diff options
| author | Warner Losh <imp@FreeBSD.org> | 1999-04-25 22:23:38 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 1999-04-25 22:23:38 +0000 |
| commit | 859663719d47f9d552103f222429ecf7530c4240 (patch) | |
| tree | b6e30b3a8c299f184b4e230ca799fc0a4e961a59 /libexec/ftpd | |
| parent | bdca080cce757ee7664f9038d18fb25493fc12f5 (diff) | |
Notes
Diffstat (limited to 'libexec/ftpd')
| -rw-r--r-- | libexec/ftpd/ftpd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c index aaa1e7dcbaf8..4f58d697b738 100644 --- a/libexec/ftpd/ftpd.c +++ b/libexec/ftpd/ftpd.c @@ -44,7 +44,7 @@ static char copyright[] = static char sccsid[] = "@(#)ftpd.c 8.4 (Berkeley) 4/16/94"; #endif static const char rcsid[] = - "$Id: ftpd.c,v 1.53 1999/04/06 23:05:57 brian Exp $"; + "$Id: ftpd.c,v 1.54 1999/04/07 08:27:40 brian Exp $"; #endif /* not lint */ /* @@ -423,11 +423,12 @@ main(argc, argv, envp) fd = open(pid_file, O_CREAT | O_WRONLY | O_TRUNC | O_NONBLOCK | O_EXLOCK, 0644); - if (fd < 0) + if (fd < 0) { if (errno == EAGAIN) errx(1, "%s: file locked", pid_file); else err(1, "%s", pid_file); + } snprintf(buf, sizeof(buf), "%lu\n", (unsigned long) getpid()); if (write(fd, buf, strlen(buf)) < 0) |
