Do a proper cleanup when printing usage info.

This commit is contained in:
Tobias Brunner
2010-05-04 18:34:27 +02:00
parent 6d7f4e0653
commit 9d843ee6fa
+4 -3
View File
@@ -258,7 +258,6 @@ static void usage(const char *msg)
" 2 = controlmore, 3 = raw, 4 = private)\n" " 2 = controlmore, 3 = raw, 4 = private)\n"
"\n" "\n"
); );
exit(msg == NULL? 0 : 1);
} }
/** /**
@@ -337,7 +336,8 @@ int main(int argc, char *argv[])
break; break;
case 'h': case 'h':
usage(NULL); usage(NULL);
break; status = 0;
goto deinit;
case 'v': case 'v':
printf("Linux strongSwan %s\n", VERSION); printf("Linux strongSwan %s\n", VERSION);
status = 0; status = 0;
@@ -351,7 +351,8 @@ int main(int argc, char *argv[])
continue; continue;
default: default:
usage(""); usage("");
break; status = 1;
goto deinit;
} }
break; break;
} }