diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-24 20:44:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-24 20:44:55 +0000 |
commit | 691fece60c868db47becf5026d06f610252baa09 (patch) | |
tree | 7009b41cdeba1d3481750d0b7aab067f9f494848 /usr.sbin/authpf/authpf.c | |
parent | 9a62e441b68ae3fee846d3b52fb004620b0996b9 (diff) |
(long)getpid(); andrushock@korovino.net
Diffstat (limited to 'usr.sbin/authpf/authpf.c')
-rw-r--r-- | usr.sbin/authpf/authpf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/authpf/authpf.c b/usr.sbin/authpf/authpf.c index 7813673c31a..afd7d9723e8 100644 --- a/usr.sbin/authpf/authpf.c +++ b/usr.sbin/authpf/authpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authpf.c,v 1.58 2003/06/03 20:38:59 beck Exp $ */ +/* $OpenBSD: authpf.c,v 1.59 2003/06/24 20:44:54 deraadt Exp $ */ /* * Copyright (C) 1998 - 2002 Bob Beck (beck@openbsd.org). @@ -280,8 +280,8 @@ dogdeath: printf("\r\n\r\nSorry, this service is currently unavailable due to "); printf("technical difficulties\r\n\r\n"); print_message(PATH_PROBLEM); - printf("\r\nYour authentication process (pid %d) was unable to run\n", - getpid()); + printf("\r\nYour authentication process (pid %ld) was unable to run\n", + (long)getpid()); sleep(180); /* them lusers read reaaaaal slow */ die: do_death(0); |