diff options
author | james <> | 2008-05-09 12:56:11 +0000 |
---|---|---|
committer | james <> | 2008-05-09 12:56:11 +0000 |
commit | 526939a5d35c764959d97776e082741fe2b28683 (patch) | |
tree | 292d553db89721c7c2ad20b7955a0c3ad6f741f3 /src | |
parent | 972c826a824930ef84391a3f36d601dc823e3038 (diff) | |
download | sympathy-526939a5d35c764959d97776e082741fe2b28683.tar.gz sympathy-526939a5d35c764959d97776e082741fe2b28683.tar.bz2 sympathy-526939a5d35c764959d97776e082741fe2b28683.zip |
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r-- | src/lockfile.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lockfile.c b/src/lockfile.c index b64b30b..570152e 100644 --- a/src/lockfile.c +++ b/src/lockfile.c @@ -11,6 +11,9 @@ static char rcsid[] = /* * $Log$ + * Revision 1.16 2008/05/09 12:56:11 james + * *** empty log message *** + * * Revision 1.15 2008/03/07 14:13:40 james * *** empty log message *** * @@ -202,11 +205,15 @@ lockfile_make (char *name) write (fd, buf, i); fchmod (fd, 044); +#if 0 if (chown_uucp (fd)) { close (fd); unlink (tmpfn); return -1; } +#else + chown_uucp (fd); +#endif close (fd); |