tidying
authorJeremy Harris <jgh146exb@wizmail.org>
Sun, 3 Feb 2019 11:35:30 +0000 (11:35 +0000)
committerJeremy Harris <jgh146exb@wizmail.org>
Mon, 11 Feb 2019 00:16:35 +0000 (00:16 +0000)
src/src/functions.h
src/src/lookups/nisplus.c
src/src/tls-openssl.c

index 8d2632c4b34bfe7769436b685368248575952cde..c7acc2f5276d8ec189981931a81ab420d4af748d 100644 (file)
@@ -112,6 +112,7 @@ extern int     auth_client_item(void *, auth_instance *, const uschar **,
 
 extern int     auth_get_data(uschar **, const uschar *, int);
 extern int     auth_get_no64_data(uschar **, uschar *);
+extern int     auth_prompt(const uschar *);
 extern int     auth_read_input(const uschar *);
 extern void    auth_show_supported(FILE *);
 extern uschar *auth_xtextencode(uschar *, int);
index 61cc7018462b1a89e07ad5c2d9101f58f829c27d..6a3351eccab09168b88117ffeae17903a754cbf7 100644 (file)
@@ -148,7 +148,8 @@ for (int i = 0; i < eo->en_cols.en_cols_len; i++)
   empty string for consistency. Remove trailing whitespace and zero
   bytes. */
 
-  if (value == NULL) value = US""; else
+  if (!value) value = US"";
+  else
     while (len > 0 && (value[len-1] == 0 || isspace(value[len-1])))
       len--;
 
@@ -156,7 +157,7 @@ for (int i = 0; i < eo->en_cols.en_cols_len; i++)
 
   if (!field_name)
     {
-    yield = string_cat (yield, tc->tc_name);
+    yield = string_cat (yield, US tc->tc_name);
     yield = string_catn(yield, US"=", 1);
 
     /* Quote the value if it contains spaces or is empty */
index e49966d98b12f22f34beb3b1499993d576f434bc..aa24c3338401ace6b06f48309d0b572bf1518d41 100644 (file)
@@ -782,11 +782,13 @@ DEBUG(D_tls)
   }
 }
 
+#ifdef OPENSSL_HAVE_KEYLOG_CB
 static void
 keylog_callback(const SSL *ssl, const char *line)
 {
 DEBUG(D_tls) debug_printf("%.200s\n", line);
 }
+#endif