X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Fdird%2Fua_input.c;h=3c9af2500e407c108ad22e8b09cd0f22012941d4;hb=6e637fce30a1fdbc2da43552f513f529db4d4e87;hp=ea27cae06e80df09ed3abcc2603292f1bbb03501;hpb=af228399838423e650ead4aad551a8627ffaf058;p=bacula%2Fbacula diff --git a/bacula/src/dird/ua_input.c b/bacula/src/dird/ua_input.c index ea27cae06e..3c9af2500e 100644 --- a/bacula/src/dird/ua_input.c +++ b/bacula/src/dird/ua_input.c @@ -1,7 +1,7 @@ /* Bacula® - The Network Backup Solution - Copyright (C) 2001-2007 Free Software Foundation Europe e.V. + Copyright (C) 2001-2008 Free Software Foundation Europe e.V. The main author of Bacula is Kern Sibbald, with contributions from many others, a complete list can be found in the file AUTHORS. @@ -49,11 +49,11 @@ int get_cmd(UAContext *ua, const char *prompt) int stat; ua->cmd[0] = 0; - if (!sock) { /* No UA */ + if (!sock || ua->batch) { /* No UA or batch mode */ return 0; } sock->fsend("%s", prompt); - sock->signal(BNET_PROMPT); /* request more input */ + sock->signal(BNET_PROMPT); /* request more input */ for ( ;; ) { stat = sock->recv(); if (stat == BNET_SIGNAL) {