diff options
author | 2002-05-26 09:24:35 +0000 | |
---|---|---|
committer | 2002-05-26 09:24:35 +0000 | |
commit | 13ee8a54b862cc0dfd91f39c641da06af64cc2b2 (patch) | |
tree | cc15bdee8a5aa91ccbc87bc82fc9585d9342b76d /lib/libutil/uucplock.c | |
parent | - CPU_MAXID and CPU_CHIPSET were swapped in cpu.h (diff) | |
download | wireguard-openbsd-13ee8a54b862cc0dfd91f39c641da06af64cc2b2.tar.xz wireguard-openbsd-13ee8a54b862cc0dfd91f39c641da06af64cc2b2.zip |
pid_t cleanup
Diffstat (limited to 'lib/libutil/uucplock.c')
-rw-r--r-- | lib/libutil/uucplock.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libutil/uucplock.c b/lib/libutil/uucplock.c index 0d4c0bba18d..ff12b6360ff 100644 --- a/lib/libutil/uucplock.c +++ b/lib/libutil/uucplock.c @@ -1,4 +1,4 @@ -/* * $OpenBSD: uucplock.c,v 1.8 2002/02/16 21:27:29 millert Exp $*/ +/* * $OpenBSD: uucplock.c,v 1.9 2002/05/26 09:29:02 deraadt Exp $*/ /* * Copyright (c) 1988, 1993 * The Regents of the University of California. All rights reserved. @@ -52,7 +52,7 @@ static const char sccsid[] = "@(#)uucplock.c 8.1 (Berkeley) 6/6/93"; #define MAXTRIES 5 -#define LOCKTMP "LCKTMP..%d" +#define LOCKTMP "LCKTMP..%ld" #define LOCKFMT "LCK..%s" #define GORET(level, val) { err = errno; uuerr = (val); \ @@ -78,7 +78,7 @@ uu_lock(ttyname) pid = getpid(); (void)snprintf(lcktmpname, sizeof(lcktmpname), _PATH_UUCPLOCK LOCKTMP, - pid); + (long)pid); (void)snprintf(lckname, sizeof(lckname), _PATH_UUCPLOCK LOCKFMT, ttyname); if ((tmpfd = creat(lcktmpname, 0664)) < 0) @@ -211,7 +211,7 @@ put_pid(fd, pid) char buf[32]; int len; - len = sprintf (buf, "%10d\n", (int)pid); + len = snprintf(buf, sizeof buf, "%10ld\n", (long)pid); if (write (fd, buf, len) == len) { /* We don't mind too much if ftruncate() fails - see get_pid */ |