* lib/pid_output.c: (pid_output_lock) undo paulj's mindless edit.
This commit is contained in:
paul 2003-10-30 21:58:06 +00:00
parent 3bf1c917d1
commit e4eaf1d509

View File

@ -56,8 +56,7 @@ pid_output_lock (char *path)
int fd;
pid_t pid;
char buf[16];
struct flock lock = { .l_type = F_WRLCK,
.l_whence = SEEK_END };
struct flock lock;
pid = getpid ();
@ -72,6 +71,9 @@ pid_output_lock (char *path)
{
memset (&lock, 0, sizeof(lock));
lock.l_type = F_WRLCK;
lock.l_whence = SEEK_END;
if (fcntl(fd, F_SETLK, &lock) < 0)
{
zlog_err("Could not lock pid_file %s, exit", path);