X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Flock_file.c;h=83cf01a25324390e9e1a6a4a25f633051d0aeeee;hb=648c015ca70b15edf41d80aa87314ade3252d140;hp=0e14e8de665ba05ce5ec41d87a4153a835f9b1cf;hpb=d1b702b1220d45e441b2b9597a8cf58edb51a653;p=mmh diff --git a/sbr/lock_file.c b/sbr/lock_file.c index 0e14e8d..83cf01a 100644 --- a/sbr/lock_file.c +++ b/sbr/lock_file.c @@ -431,18 +431,8 @@ lockit (struct lockinfo *li) curlock = li->curlock; tmplock = li->tmplock; -#ifdef HAVE_MKSTEMP if ((fd = mkstemp(tmplock)) == -1) return -1; -#else - if (mktemp(tmplock) == NULL) - return -1; - if (unlink(tmplock) == -1 && errno != ENOENT) - return -1; - /* create the temporary lock file */ - if ((fd = creat(tmplock, 0600)) == -1) - return -1; -#endif #if 0 /* write our process id into lock file */