]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix compiler warning in message.c
authorKern Sibbald <kern@sibbald.com>
Tue, 22 Nov 2011 16:35:01 +0000 (17:35 +0100)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:50:14 +0000 (14:50 +0200)
bacula/src/lib/message.c

index 5af7851074e1b4ad9fd9bae88125e44854c4f93b..f6712bca7a23ab3f07817c1c3dfc232cd718007b 100644 (file)
@@ -666,7 +666,7 @@ static bool open_dest_file(JCR *jcr, DEST *d, const char *mode)
 }
 
 /* Split the output for syslog (it converts \n to ' ' and is
- * limited to 1024c
+ *   limited to 1024 characters per syslog message
  */
 static void send_to_syslog(int mode, const char *msg)
 {
@@ -675,9 +675,8 @@ static void send_to_syslog(int mode, const char *msg)
    const char *p2;
    const char *p = msg;
 
-   while (*p && ((p2 = strchr(p, '\n')) != NULL))
-   {
-      len = MIN(sizeof(buf) - 1, p2 - p + 1); /* Add 1 to keep \n */
+   while (*p && ((p2 = strchr(p, '\n')) != NULL)) {
+      len = MIN((int)sizeof(buf) - 1, p2 - p + 1); /* Add 1 to keep \n */
       strncpy(buf, p, len);
       buf[len] = 0;
       syslog(mode, "%s", buf);