]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix bug #1771 BAT crashes.
authorMarco van Wieringen <mvw@planets.elm.net>
Fri, 28 Oct 2011 21:06:53 +0000 (23:06 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:50:07 +0000 (14:50 +0200)
As it seems B_ISSPACE is much wider then I thought it would
be as I only wanted to remove both spaces and tabs but that
seems to break the BAT protocol. So lets backout that patch.

bacula/src/lib/scan.c

index 4e9aadc15258c9c20f007d8b5be36fb812ceade0..d8dfab383562fc8ad7b989abe46776f4a42d6524 100644 (file)
@@ -62,7 +62,7 @@ void strip_trailing_junk(char *cmd)
     * Strip trailing junk from command
     */
    p = cmd + strlen(cmd) - 1;
-   while ((p >= cmd) && (*p == '\n' || *p == '\r' || B_ISSPACE(*p))) {
+   while ((p >= cmd) && (*p == '\n' || *p == '\r' || *p == ' ')) {
       *p-- = 0;
    }
 }