diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-13 22:37:16 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-13 22:37:16 +0000 |
commit | c2dc08c014af76a47af336c84b6d64e7babe7985 (patch) | |
tree | ac4fe52015fcf3cfabd6962a557f6aee00f5cbf3 /lib/libwrap/update.c | |
parent | eb62cef5f54c964e42b875ce72a6806f338e25bd (diff) |
repair prototypes
reviewed by chris
Diffstat (limited to 'lib/libwrap/update.c')
-rw-r--r-- | lib/libwrap/update.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libwrap/update.c b/lib/libwrap/update.c index 7d3c2746d3a..36e5c021e8a 100644 --- a/lib/libwrap/update.c +++ b/lib/libwrap/update.c @@ -1,4 +1,4 @@ -/* $OpenBSD: update.c,v 1.6 2009/10/27 23:59:30 deraadt Exp $ */ +/* $OpenBSD: update.c,v 1.7 2013/11/13 22:37:15 deraadt Exp $ */ /* * Routines for controlled update/initialization of request structures. @@ -29,9 +29,8 @@ /* request_fill - request update engine */ -static struct request_info *request_fill(request, ap) -struct request_info *request; -va_list ap; +static struct request_info *request_fill(struct request_info *request, + va_list ap) { int key; char *ptr; |