]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix prune sql handler
authorEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 19:36:42 +0000 (21:36 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Wed, 4 Aug 2010 09:34:40 +0000 (11:34 +0200)
bacula/src/dird/ua_prune.c

index c3883828c3390d6a463904124b9ed346bca45700..edef66ded05f98d666487ebf1a420cc2353185eb 100644 (file)
@@ -357,22 +357,22 @@ static int job_select_handler(void *ctx, int num_fields, char **row)
 
    /* If this job doesn't exist anymore in the configuration, delete it */
    if (GetResWithName(R_JOB, row[0]) == NULL) {
-      return 1;
+      return 0;
    }
 
    /* If this fileset doesn't exist anymore in the configuration, delete it */
    if (GetResWithName(R_FILESET, row[1]) == NULL) {
-      return 1;
+      return 0;
    }
 
    /* If this client doesn't exist anymore in the configuration, delete it */
    if (GetResWithName(R_CLIENT, row[2]) == NULL) {
-      return 1;
+      return 0;
    }
 
    /* Don't compute accurate things for Verify jobs */
    if (*row[5] == 'V') {
-      return 1;
+      return 0;
    }
 
    res = (struct accurate_check_ctx*) malloc(sizeof(struct accurate_check_ctx));