diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-06 19:43:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-06 19:43:55 +0000 |
commit | be77049622266cc17c3bdcf5a5133d4d840c017e (patch) | |
tree | 961945ab4f9c5985e18ccf2b03d4c0e4187fce58 /libexec/rpc.sprayd | |
parent | 11cebf79245d373cc7a70e7f78fff2b465e010f2 (diff) |
use socklen_t more; henning ok
Diffstat (limited to 'libexec/rpc.sprayd')
-rw-r--r-- | libexec/rpc.sprayd/sprayd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/rpc.sprayd/sprayd.c b/libexec/rpc.sprayd/sprayd.c index 7a9fa14c0aa..ee3684ad855 100644 --- a/libexec/rpc.sprayd/sprayd.c +++ b/libexec/rpc.sprayd/sprayd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sprayd.c,v 1.6 2002/06/29 07:30:01 deraadt Exp $*/ +/* $OpenBSD: sprayd.c,v 1.7 2002/09/06 19:43:54 deraadt Exp $*/ /* * Copyright (c) 1994 Christos Zoulas @@ -32,7 +32,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: sprayd.c,v 1.6 2002/06/29 07:30:01 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: sprayd.c,v 1.7 2002/09/06 19:43:54 deraadt Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -72,7 +72,7 @@ main(int argc, char *argv[]) int sock = 0; int proto = 0; struct sockaddr_in from; - int fromlen; + socklen_t fromlen; /* * See if inetd started us |