Remove useless break statements

This commit is contained in:
Tobias Brunner
2018-11-12 17:36:22 +01:00
parent ff3f09af45
commit de80946f6a
7 changed files with 1 additions and 11 deletions
-2
View File
@@ -84,11 +84,9 @@ main(int argc, char *argv[])
case 'h': /* help */
printf("%s\n", usage);
exit(0);
break;
case 'v': /* version */
printf("%s strongSwan "VERSION"\n", me);
exit(0);
break;
case '?':
default:
errflg = 1;