]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix segfault in action on purge test
authorEric Bollengier <eric@eb.homelinux.org>
Tue, 25 May 2010 20:11:19 +0000 (22:11 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 14:53:50 +0000 (16:53 +0200)
bacula/src/dird/ua_purge.c

index 20ddbf8b5226a2b5e38f3d2aab656da830c854e9..61e2986c166e8bee9a83ee27788fe42d1fce9db3 100644 (file)
@@ -616,7 +616,7 @@ static void do_truncate_on_purge(UAContext *ua, MEDIA_DBR *mr,
    /* Send relabel command, and check for valid response */
    while (sd->recv() >= 0) {
       ua->send_msg("%s", sd->msg);
-      if (sscanf(sd->msg, "3000 OK label. VolBytes=%llu DVD=%d ", VolBytes, &dvd) == 2) {
+      if (sscanf(sd->msg, "3000 OK label. VolBytes=%llu DVD=%d ", &VolBytes, &dvd) == 2) {
          ok = true;
       }
    }