]> git.sur5r.net Git - bacula/bacula/commitdiff
kes Add additional info to some SD messages.
authorKern Sibbald <kern@sibbald.com>
Mon, 18 Aug 2008 20:53:20 +0000 (20:53 +0000)
committerKern Sibbald <kern@sibbald.com>
Mon, 18 Aug 2008 20:53:20 +0000 (20:53 +0000)
kes  Add fix supplied by Martin Simmons for turning off EOL character
     in new console multi-command code.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7499 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/console/console.c
bacula/src/stored/acquire.c
bacula/technotes-2.5

index 0efadb8fe58d9c44bd4bcca98a1645f8ed78a262..56d7a4ca765e54171dd55c15ec6ddbb4d4e9edae 100644 (file)
@@ -353,12 +353,11 @@ static int eolcmd(FILE *input, BSOCK *UA_sock)
 {
    if ((argc > 1) && (strchr("!$%&'()*+,-/:;<>?[]^`{|}~", argk[1][0]) != NULL)) {
       eol = argk[1][0];
-      return 1;
    } else if (argc == 1) {
       eol = '\0';
+   } else {
+      sendit(_("Illegal separator character.\n"));
    }
-
-   sendit(_("Illegal separator character.\n"));
    return 1;
 }
 
index 2aba36809223d54a9cf23ea2b29688d2f05d3eec..5345ca35eb60d28b3ceeed15688758cb5311ea47 100644 (file)
@@ -111,10 +111,10 @@ bool acquire_device_for_read(DCR *dcr)
       DIRSTORE *store;
       int stat;
 
-      Jmsg3(jcr, M_INFO, 0, _("Changing device. Want Media Type=\"%s\" have=\"%s\"\n"
+      Jmsg3(jcr, M_INFO, 0, _("Changing read device. Want Media Type=\"%s\" have=\"%s\"\n"
                               "  device=%s\n"), 
             dcr->media_type, dev->device->media_type, dev->print_name());
-      Dmsg3(50, "Changing device. Want Media Type=\"%s\" have=\"%s\"\n"
+      Dmsg3(50, "Changing read device. Want Media Type=\"%s\" have=\"%s\"\n"
                               "  device=%s\n", 
             dcr->media_type, dev->device->media_type, dev->print_name());
 
@@ -147,9 +147,9 @@ bool acquire_device_for_read(DCR *dcr)
          dev = dcr->dev;                     /* get new device pointer */
          dev->dblock(BST_DOING_ACQUIRE); 
          dcr->VolumeName[0] = 0;
-         Jmsg(jcr, M_INFO, 0, _("Media Type change.  New device %s chosen.\n"),
+         Jmsg(jcr, M_INFO, 0, _("Media Type change.  New read device %s chosen.\n"),
             dev->print_name());
-         Dmsg1(50, "Media Type change.  New device %s chosen.\n", dev->print_name());
+         Dmsg1(50, "Media Type change.  New read device %s chosen.\n", dev->print_name());
 
          bstrncpy(dcr->VolumeName, vol->VolumeName, sizeof(dcr->VolumeName));
          bstrncpy(dcr->VolCatInfo.VolCatName, vol->VolumeName, sizeof(dcr->VolCatInfo.VolCatName));
index d4e6b39234e401bdf76cd23ca8efaeeae87605fb..f65aefbd12b8bdbec21a508c36f1045afec53317 100644 (file)
@@ -32,6 +32,10 @@ separator in console (!$%&'()*+,-/:;<>?[]^`{|}~)
 
 
 General:
+18Aug08
+kes  Add additional info to some SD messages.
+kes  Add fix supplied by Martin Simmons for turning off EOL character
+     in new console multi-command code.
 14Aug08
 kes  Fix a Verify InitCatalog problem where in certain cases
      a garbage filename may be entered in the verification database.  This