Compiler quietening
authorJeremy Harris <jgh146exb@wizmail.org>
Sat, 6 Dec 2014 15:18:56 +0000 (15:18 +0000)
committerJeremy Harris <jgh146exb@wizmail.org>
Sat, 6 Dec 2014 15:26:14 +0000 (15:26 +0000)
src/src/malware.c
src/src/readconf.c
src/src/spam.c

index 339e2033331f7df7e393d39529c60813ed61c564..9a83b9377e7e972ef247a5e3392b694ee2d40c27 100644 (file)
@@ -1604,7 +1604,7 @@ malware_internal(uschar **listptr, uschar *eml_filename, BOOL faking)
            if ((malware_name = m_pcre_exec(avast_virus_re, buf)))
              {
              /* remove backslashes from the virus string */
-             char *p, *q;
+             uschar *p, *q;
              for (p = malware_name; *p; p++) if (*p == '\\')
                for (q = p; *q; q++) *q = q[1];
 
index df4cbb2fd5a1a2daab8ba0e3f58026894c76257f..c6f396f850868411a8c96fb44e513c271e6ace36 100644 (file)
@@ -3011,9 +3011,9 @@ if (config_file != NULL)
   uschar *p;
   config_filename = config_main_filename = string_copy(filename);
 
-  p = strrchr(filename, '/');
+  p = Ustrrchr(filename, '/');
   config_main_directory = p ? string_copyn(filename, p - filename) 
-                            : string_copy(".");
+                            : string_copy(US".");
   }
 else
   {
index 45a06931cdc4d2de600fcdeb021ba8c24b4139cf..c0c3fb3730148a9595c1e7cb5a0c437360049f87 100644 (file)
@@ -48,7 +48,7 @@ spam(uschar **listptr)
   fd_set select_fd;
 #endif
   uschar *spamd_address_work;
-  static const char * loglabel = US"spam acl condition:";
+  static const uschar * loglabel = US"spam acl condition:";
 
   /* stop compiler warning */
   result = 0;