1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-28 01:41:48 +03:00

Fixed compilation without argp.h available

This commit is contained in:
Aris Adamantiadis
2011-01-13 21:21:19 +01:00
parent 2917e71aad
commit 0b46f68c5f
3 changed files with 16 additions and 4 deletions

View File

@ -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);