From: Wilfried Goesgens Date: Sat, 29 Jun 2013 22:21:53 +0000 (+0200) Subject: Sendcommand: add missing break - so we don't fail to -w. X-Git-Tag: v8.20~11 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=3f558a41a437dad1d8ae77312318101027fd016e Sendcommand: add missing break - so we don't fail to -w. Thanks to Harry Coin for pointing this out. --- diff --git a/citadel/utils/sendcommand.c b/citadel/utils/sendcommand.c index bef37c7be..e97965f19 100644 --- a/citadel/utils/sendcommand.c +++ b/citadel/utils/sendcommand.c @@ -163,6 +163,7 @@ int main(int argc, char **argv) break; case 'w': watchdog = atoi(optarg); + break; default: fprintf(stderr, "sendcommand: usage: sendcommand [-h server_dir] [-w watchdog_timeout]\n"); return(1);