]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl fix #766 on RunsOnClient = Yes
authorEric Bollengier <eric@eb.homelinux.org>
Mon, 5 Feb 2007 14:23:39 +0000 (14:23 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 5 Feb 2007 14:23:39 +0000 (14:23 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@4104 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/dird/dird_conf.c

index b32c4122080c14b203945d1e665ed1c16fb8376d..5494f0eca37ba93fc34e5eb75b5dda6870dc709f 100644 (file)
@@ -1608,9 +1608,9 @@ static void store_runscript_target(LEX *lc, RES_ITEM *item, int index, int pass)
    if (pass == 2) {
       if (strcmp(lc->str, "%c") == 0) {
          ((RUNSCRIPT*) item->value)->set_target(lc->str);
-      } else if (strcmp(lc->str, "yes") == 0) {
+      } else if (strcasecmp(lc->str, "yes") == 0) {
          ((RUNSCRIPT*) item->value)->set_target("%c");
-      } else if (strcmp(lc->str, "no") == 0) {
+      } else if (strcasecmp(lc->str, "no") == 0) {
          ((RUNSCRIPT*) item->value)->set_target("");
       } else {
          RES *res = GetResWithName(R_CLIENT, lc->str);