]> git.sur5r.net Git - bacula/bacula/commitdiff
Change FD protocol version to avoid error message when sending RestoreObjects
authorEric Bollengier <eric@eb.homelinux.org>
Fri, 3 Sep 2010 15:24:15 +0000 (17:24 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Tue, 7 Sep 2010 19:05:35 +0000 (21:05 +0200)
bacula/src/dird/fd_cmds.c
bacula/src/filed/authenticate.c

index 57c38ddca86f02959b70d6bc76fb80faa704e544..6c51d0383306d749242bdf1e2879edecaa387dd3 100644 (file)
@@ -677,6 +677,14 @@ static int restore_object_handler(void *ctx, int num_fields, char **row)
    if (jcr->is_job_canceled()) {
       return 1;
    }
+   /* Old File Daemon doesn't handle restore objects */
+   if (jcr->FDVersion < 3) {
+      Jmsg(jcr, M_WARNING, 0, _("Client \"%s\" may not be used to restore "
+                                "this job. Please upgrade your client.\n"), 
+           jcr->client->name());
+      return 1;
+   }
+
    fd->fsend("restoreobject JobId=%s %s,%s,%s,%s,%s,%s\n",
       row[0], row[1], row[2], row[3], row[4], row[5], row[6]);
 
index ae926f34ae992f06dc7c69a9f3fd6c9b9db8124b..2bff4e07e28d0be67c897b1d3c2248668d917ee5 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2000-2009 Free Software Foundation Europe e.V.
+   Copyright (C) 2000-2010 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -30,8 +30,6 @@
  *
  *   Kern Sibbald, October 2000
  *
- *   Version $Id$
- *
  */
 
 #include "bacula.h"
@@ -43,8 +41,9 @@ const int dbglvl = 50;
  *   prior to 10Mar08 no version
  *   1 10Mar08
  *   2 13Mar09 - added the ability to restore from multiple storages
+ *   3 03Sep10 - added the restore object command for vss plugin
  */
-static char OK_hello[]  = "2000 OK Hello 2\n";
+static char OK_hello[]  = "2000 OK Hello 3\n";
 static char Dir_sorry[] = "2999 Authentication failed.\n";
 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;