]> git.sur5r.net Git - bacula/bacula/commitdiff
Change JobFiles display from %f to %F in RunScript because %f was already affected...
authorEric Bollengier <eric@eb.homelinux.org>
Tue, 5 Jul 2011 17:07:05 +0000 (19:07 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:49:03 +0000 (14:49 +0200)
bacula/src/lib/util.c

index cd244455f068f442b67093ce29382a8ed25b3750..0f9b9857af8f1e53c59196b2247036af911fa0c0 100644 (file)
@@ -723,7 +723,7 @@ void decode_session_key(char *decode, char *session, char *key, int maxlen)
  *  %r = Recipients
  *  %v = Volume name
  *  %b = Job Bytes
- *  %f = Job Files
+ *  %F = Job Files
  *
  *  omsg = edited output message
  *  imsg = input string containing edit codes (%x)
@@ -809,7 +809,7 @@ POOLMEM *edit_job_codes(JCR *jcr, char *omsg, char *imsg, const char *to, job_co
                str = _("*none*");
             }
             break;
-         case 'f':                    /* Job Files */
+         case 'F':                    /* Job Files */
             str = edit_uint64(jcr->JobFiles, add);
             break;
          case 'b':                    /* Job Bytes */