]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Fix a command parser issue causing a director segfault.
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 20 Sep 2007 16:56:53 +0000 (16:56 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Thu, 20 Sep 2007 16:56:53 +0000 (16:56 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5616 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/dird/ua_run.c
bacula/technotes-2.3

index 5baf9d9c6a03e182defef81187f8da33c5b9726d..ece3e36cb779956e2f3cf120f1d30c51afb672dc 100644 (file)
@@ -933,7 +933,7 @@ static bool scan_command_line_arguments(UAContext *ua, run_ctx &rc)
             /* Note, yes and run have no value, so do not fail */
             if (!ua->argv[i] && j != YES_POS /*yes*/) {
                ua->send_msg(_("Value missing for keyword %s\n"), ua->argk[i]);
-               return true;
+               return false;
             }
             Dmsg1(800, "Got keyword=%s\n", NPRT(kw[j]));
             switch (j) {
index 607ad8b5951bf0a2257d9e01455b1d9949a152d2..251b83468bf7a30d61ae0f8a2d4819f57b815b8e 100644 (file)
@@ -2,6 +2,7 @@
 
 General:
 20Sep07
+ebl  Fix a command parser issue causing a director segfault.
 kes  Fix ANSI tape labeling. Fix restoring ANSI labeled Volumes. 
      This fixes bug #954.
 kes  Increase the max block size to 4MB fixes bug #957.