diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/src/globals.c | 2 | ||||
-rw-r--r-- | src/src/globals.h | 2 |
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 */ |