summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2023-08-09 13:08:50 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2023-08-09 13:08:50 +0100
commited4f9175333dfdad9b8766c0b168d7edbccbd595 (patch)
tree3884faea20a92b80afc8d1b97ddcacaaa4101431
parentecb6fe6728708adefdf4f2f2aad134e36f09fc28 (diff)
Unbreak FreeBSD buld
Broken-by: 4e871f9b28df
-rw-r--r--src/src/globals.c2
-rw-r--r--src/src/globals.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/src/globals.c b/src/src/globals.c
index 56d192781..f945379a0 100644
--- a/src/src/globals.c
+++ b/src/src/globals.c
@@ -737,7 +737,7 @@ uid_t config_uid = CONFIGURE_OWNER;
uid_t config_uid = 0;
#endif
-ulong connection_id = 0L;
+uint64_t connection_id = 0L;
int connection_max_messages= -1;
uschar *continue_proxy_cipher = NULL;
BOOL continue_proxy_dane = FALSE;
diff --git a/src/src/globals.h b/src/src/globals.h
index 2458066dd..ff82bef6d 100644
--- a/src/src/globals.h
+++ b/src/src/globals.h
@@ -432,7 +432,7 @@ extern gstring *client_cmd_log; /* debug log of client cmds & responses *
extern int clmacro_count; /* Number of command line macros */
extern uschar *clmacros[]; /* Copy of them, for re-exec */
extern BOOL commandline_checks_require_admin; /* belt and braces for insecure setups */
-extern ulong connection_id; /* per-daemon connection number */
+extern uint64_t connection_id; /* connection number */
extern int connection_max_messages;/* Max down one SMTP connection */
extern FILE *config_file; /* Configuration file */
extern const uschar *config_filename; /* Configuration file name */