]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix Bacula bug #2046 -- sellist limited to 10000
authorKern Sibbald <kern@sibbald.com>
Wed, 9 Apr 2014 17:27:38 +0000 (19:27 +0200)
committerKern Sibbald <kern@sibbald.com>
Wed, 9 Apr 2014 17:27:38 +0000 (19:27 +0200)
bacula/src/lib/sellist.c
bacula/src/lib/sellist.h

index 3f58de04ecdc28b68cb45f0ae6b0d702f002e399..003fec77cba1e6927051436140bf856b820426da 100644 (file)
@@ -105,10 +105,6 @@ int64_t sellist::next()
          errmsg = _("Selection items must be be greater than zero.\n");
          goto bail_out;
       }
-      if (end > max) {
-         errmsg = _("Selection item too large.\n");
-         goto bail_out;
-      }
       if (beg <= end) {
          return beg++;
       }
index e075191e4f9e03d76c49696ad972a6d0afac9772..c9716a0eea7a99fc610a2f4768a85d6227ecb9dc 100644 (file)
@@ -37,7 +37,6 @@ class sellist : public SMARTALLOC {
    char esave, hsave;
    bool all;
    int64_t beg, end;
-   int64_t max;
    int num_items;
    char *str;
    char *expanded;
@@ -64,7 +63,6 @@ public:
 inline sellist::sellist()
 {
    num_items = 0;
-   max = 99999;
    expanded = NULL;
    str = NULL;
    e = NULL;