]> git.sur5r.net Git - bacula/bacula/commitdiff
tweak ua_prune
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 17 Jun 2010 12:01:26 +0000 (14:01 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 14:53:55 +0000 (16:53 +0200)
bacula/src/dird/ua_prune.c

index af57a3354fc6a7e0efcb15dd79265c983a4dffb1..3113057c2ea15011d5e4e051cd0957683071b7d6 100644 (file)
@@ -348,15 +348,12 @@ struct accurate_check_ctx {
    DBId_t FileSetId;                  /* Id of FileSet */ 
 };
 
-/* row: Job.Name, FileSet, Client.Name, FileSetId, ClientId */
+/* row: Job.Name, FileSet, Client.Name, FileSetId, ClientId, Type */
 static int job_select_handler(void *ctx, int num_fields, char **row)
 {
    alist *lst = (alist *)ctx;
    struct accurate_check_ctx *res;
-
-   if (num_fields != 6) {
-      return 1;
-   }
+   ASSERT(num_fields == 6);
 
    /* If this job doesn't exist anymore in the configuration, delete it */
    if (GetResWithName(R_JOB, row[0]) == NULL) {