From 0b46f68c5fda153c9ca164766b83da430d1ef02e Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Thu, 13 Jan 2011 21:21:19 +0100 Subject: Fixed compilation without argp.h available --- examples/samplesshd.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'examples') diff --git a/examples/samplesshd.c b/examples/samplesshd.c index 52ab7b9..f192ef8 100644 --- a/examples/samplesshd.c +++ b/examples/samplesshd.c @@ -191,6 +191,9 @@ int main(int argc, char **argv){ * be reflected in arguments. */ argp_parse (&argp, argc, argv, 0, 0, sshbind); +#else + (void) argc; + (void) argv; #endif #ifdef WITH_PCAP set_pcap(session); -- cgit