]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/util.c
Working directory pane in restore. Will get this into the stack next.
[bacula/bacula] / bacula / src / lib / util.c
index b457f0a3963f3b38683e37b02e754a07880a9e6f..9cb5e07755540c0cb762e43eff19a001b0d1af41 100644 (file)
@@ -76,8 +76,9 @@ bool is_buf_zero(char *buf, int len)
 void lcase(char *str)
 {
    while (*str) {
-      if (B_ISUPPER(*str))
+      if (B_ISUPPER(*str)) {
          *str = tolower((int)(*str));
+       }
        str++;
    }
 }