From 29818ff0b7af752639c203237de6c3a4d84da2c2 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Fri, 4 Jan 2013 17:38:53 -0800 Subject: unifdef -U__UNIXOS2__ Signed-off-by: Alan Coopersmith --- lock.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lock.c b/lock.c index d51d09e..84c0ee3 100644 --- a/lock.c +++ b/lock.c @@ -58,15 +58,10 @@ LockSession(const char *session_name, Bool write_id) path = GetPath (); -#ifndef __UNIXOS2__ snprintf (lock_file, sizeof(lock_file), "%s/.XSMlock-%s", path, session_name); snprintf (temp_lock_file, sizeof(temp_lock_file), "%s/.XSMtlock-%s", path, session_name); -#else - snprintf (temp_lock_file, sizeof(temp_lock_file), "%s/%s.slk", - path, session_name); -#endif if ((fd = creat (temp_lock_file, 0444)) < 0) return (0); @@ -81,7 +76,6 @@ LockSession(const char *session_name, Bool write_id) close (fd); -#ifndef __UNIXOS2__ status = 1; if (link (temp_lock_file, lock_file) < 0) @@ -89,9 +83,6 @@ LockSession(const char *session_name, Bool write_id) if (remove (temp_lock_file) < 0) status = 0; -#else - status = 0; -#endif return (status); } -- cgit v1.2.3