diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-26 19:47:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-26 19:47:11 +0000 |
commit | 7a14bc5682258d5115d7b31007e360bed6a6e64c (patch) | |
tree | 51f9456e5d30d3776b1afcf96fde1858fb0d85c6 /usr.sbin/inetd | |
parent | 5c9e03e42bdf196412f7cdad89ef38833f6cdf37 (diff) |
strict proto cleanups
Diffstat (limited to 'usr.sbin/inetd')
-rw-r--r-- | usr.sbin/inetd/inetd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c index c0f62e305b0..f679bc21fc5 100644 --- a/usr.sbin/inetd/inetd.c +++ b/usr.sbin/inetd/inetd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: inetd.c,v 1.110 2003/06/02 23:36:53 millert Exp $ */ +/* $OpenBSD: inetd.c,v 1.111 2003/06/26 19:47:08 deraadt Exp $ */ /* $NetBSD: inetd.c,v 1.11 1996/02/22 11:14:41 mycroft Exp $ */ /* * Copyright (c) 1983,1991 The Regents of the University of California. @@ -37,7 +37,7 @@ char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)inetd.c 5.30 (Berkeley) 6/3/91";*/ -static char rcsid[] = "$OpenBSD: inetd.c,v 1.110 2003/06/02 23:36:53 millert Exp $"; +static char rcsid[] = "$OpenBSD: inetd.c,v 1.111 2003/06/26 19:47:08 deraadt Exp $"; #endif /* not lint */ /* @@ -1830,7 +1830,7 @@ void daytime_stream(int s, struct servtab *sep) { char buffer[256]; - time_t time(), clock; + time_t clock; clock = time(NULL); @@ -1844,7 +1844,7 @@ void daytime_dg(int s, struct servtab *sep) { char buffer[256]; - time_t time(), clock; + time_t clock; struct sockaddr_storage ss; socklen_t size; |