]> git.sur5r.net Git - bacula/bacula/commitdiff
Revert "Warn of Storage Daemon version incompatibility if label fails. Bug #2193"
authorKern Sibbald <kern@sibbald.com>
Sat, 19 Nov 2016 14:16:56 +0000 (15:16 +0100)
committerKern Sibbald <kern@sibbald.com>
Sat, 19 Nov 2016 14:16:56 +0000 (15:16 +0100)
This reverts commit 10ecaa87061938356c8cb10f6f4afec1e2fc9260.

bacula/src/dird/ua_label.c

index fb752c2968890a58b1d7f6969cef20efbd685dec..e5cc16cb75d84a8d3c00c4532481a5ada561a10c 100644 (file)
@@ -707,15 +707,9 @@ static bool send_label_request(UAContext *ua, MEDIA_DBR *mr, MEDIA_DBR *omr,
 
    while (sd->recv() >= 0) {
       ua->send_msg("%s", sd->msg);
-      if (strstr((const POOLMEM *) sd->msg, "3000 OK label")) {
-         ok = false;
-         if (sscanf(sd->msg, "3000 OK label. VolBytes=%llu VolABytes=%lld VolType=%d ",
-                   &VolBytes, &VolABytes, &VolType) == 3) {
-            ok = true;
-         }
-      }
-      if (!ok) {
-         ua->error_msg("Volume label failed: Storage Daemon and Director are incompatible versions.");
+      if (sscanf(sd->msg, "3000 OK label. VolBytes=%llu VolABytes=%lld VolType=%d ",
+                 &VolBytes, &VolABytes, &VolType) == 3) {
+         ok = true;
       }
    }
    unbash_spaces(mr->VolumeName);