From 3f558a41a437dad1d8ae77312318101027fd016e Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Sun, 30 Jun 2013 00:21:53 +0200 Subject: [PATCH] Sendcommand: add missing break - so we don't fail to -w. Thanks to Harry Coin for pointing this out. --- citadel/utils/sendcommand.c | 1 + 1 file changed, 1 insertion(+) 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); -- 2.30.2