diff options
author | 2013-11-13 22:37:15 +0000 | |
---|---|---|
committer | 2013-11-13 22:37:15 +0000 | |
commit | 0094002659321c2b64e130fbb404f3ca00d44bd9 (patch) | |
tree | faaeef25664ac75c579777c8c7a02a2cf446d442 /lib/libwrap/shell_cmd.c | |
parent | fix_options() is not used by anything; remove API, crank major (diff) | |
download | wireguard-openbsd-0094002659321c2b64e130fbb404f3ca00d44bd9.tar.xz wireguard-openbsd-0094002659321c2b64e130fbb404f3ca00d44bd9.zip |
repair prototypes
reviewed by chris
Diffstat (limited to 'lib/libwrap/shell_cmd.c')
-rw-r--r-- | lib/libwrap/shell_cmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libwrap/shell_cmd.c b/lib/libwrap/shell_cmd.c index dbd8d7eade4..55666455d5b 100644 --- a/lib/libwrap/shell_cmd.c +++ b/lib/libwrap/shell_cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: shell_cmd.c,v 1.3 2009/10/27 23:59:30 deraadt Exp $ */ +/* $OpenBSD: shell_cmd.c,v 1.4 2013/11/13 22:37:15 deraadt Exp $ */ /* * shell_cmd() takes a shell command after %<character> substitutions. The @@ -28,7 +28,7 @@ /* Forward declarations. */ -static void do_child(); +static void do_child(char *); /* shell_cmd - execute shell command */ |