summaryrefslogtreecommitdiff
path: root/usr.bin/tip
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-05-29 09:23:26 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-05-29 09:23:26 +0000
commit0a56e23187a30c4b263905e9efc35ed738183fd4 (patch)
tree741d64038c2ad586ad319e2208c44e223da70e0f /usr.bin/tip
parenta2f77e2c291ced0b85e36486c6ca1e2cfb53b64a (diff)
more snprintf
Diffstat (limited to 'usr.bin/tip')
-rw-r--r--usr.bin/tip/uucplock.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/tip/uucplock.c b/usr.bin/tip/uucplock.c
index 406bde54a62..8c32fd91de7 100644
--- a/usr.bin/tip/uucplock.c
+++ b/usr.bin/tip/uucplock.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uucplock.c,v 1.7 2002/05/07 06:56:50 hugh Exp $ */
+/* $OpenBSD: uucplock.c,v 1.8 2002/05/29 09:23:25 deraadt Exp $ */
/* $NetBSD: uucplock.c,v 1.7 1997/02/11 09:24:08 mrg Exp $ */
/*
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)uucplock.c 8.1 (Berkeley) 6/6/93";
#endif
-static const char rcsid[] = "$OpenBSD: uucplock.c,v 1.7 2002/05/07 06:56:50 hugh Exp $";
+static const char rcsid[] = "$OpenBSD: uucplock.c,v 1.8 2002/05/29 09:23:25 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -62,10 +62,10 @@ int
uu_lock(ttyname)
char *ttyname;
{
- int fd, pid;
+ int fd, len;
char tbuf[sizeof(_PATH_LOCKDIRNAME) + MAXNAMLEN];
char text_pid[81];
- int len;
+ pid_t pid;
(void)snprintf(tbuf, sizeof tbuf, _PATH_LOCKDIRNAME, ttyname);
fd = open(tbuf, O_RDWR|O_CREAT|O_EXCL, 0660);
@@ -109,7 +109,7 @@ uu_lock(ttyname)
/* fall out and finish the locking process */
}
pid = getpid();
- (void)sprintf(text_pid, "%10d\n", pid);
+ (void)snprintf(text_pid, sizeof text_pid, "%10ld\n", (long)pid);
len = strlen(text_pid);
if (write(fd, text_pid, len) != len) {
(void)close(fd);