diff options
| author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-07-06 19:18:15 +0200 | 
|---|---|---|
| committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-07-06 19:18:15 +0200 | 
| commit | dbed235ff41b9ae72b188e57888bacc984a43d75 (patch) | |
| tree | 0966469900595c3f51acac2d9bb89429a826f1b0 /src/ipcpd/shim-udp | |
| parent | 03256707111ce2409de0857c65482512e42d9238 (diff) | |
| parent | 4fb0d2bfb7486936ef05721667f03eccf664d56e (diff) | |
| download | ouroboros-dbed235ff41b9ae72b188e57888bacc984a43d75.tar.gz ouroboros-dbed235ff41b9ae72b188e57888bacc984a43d75.zip | |
Merge branch 'be' of bitbucket.org:ouroboros-rina/ouroboros into be-clean-exit
Diffstat (limited to 'src/ipcpd/shim-udp')
| -rw-r--r-- | src/ipcpd/shim-udp/main.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/ipcpd/shim-udp/main.c b/src/ipcpd/shim-udp/main.c index 874168ef..92204970 100644 --- a/src/ipcpd/shim-udp/main.c +++ b/src/ipcpd/shim-udp/main.c @@ -1557,7 +1557,7 @@ static struct ipcp * ipcp_udp_create()  #ifndef MAKE_CHECK -int main (int argc, char * argv[]) +int main(int argc, char * argv[])  {          struct sigaction sig_act;          sigset_t  sigset; @@ -1567,8 +1567,8 @@ int main (int argc, char * argv[])          sigaddset(&sigset, SIGHUP);          sigaddset(&sigset, SIGPIPE); -        if (ipcp_arg_check(argc, argv)) { -                LOG_ERR("Wrong arguments."); +        if (ipcp_parse_arg(argc, argv)) { +                LOG_ERR("Failed to parse arguments.");                  exit(1);          } | 
