diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2017-07-15 19:55:59 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-07-15 19:55:59 +0100 |
commit | b93be52e2724a627c4cbd07ecc010cdfd81cefbd (patch) | |
tree | 5842a5d1ff70fda8343f5b60d3175e91d9c16b6e /src | |
parent | 0a6c178c6c5f45668b5bb37b8be723cc9d1e72ae (diff) |
tidying
Diffstat (limited to 'src')
-rw-r--r-- | src/OS/Makefile-Base | 2 | ||||
-rw-r--r-- | src/src/tls-openssl.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/OS/Makefile-Base b/src/OS/Makefile-Base index 7746597ba..aa3b371a8 100644 --- a/src/OS/Makefile-Base +++ b/src/OS/Makefile-Base @@ -128,7 +128,7 @@ MACRO_HSRC = macro_predef.h os.h globals.h config.h \ macro_predef: $(MACRO_CSRC) $(MACRO_HSRC) @echo "$(CC) -DMACRO_PREDEF macro_predef.c" - $(FE)$(CC) $(CFLAGS) -DMACRO_PREDEF -o macro_predef $(MACRO_CSRC) + $(FE)$(CC) $(CFLAGS) -DMACRO_PREDEF $(INCLUDE) -o macro_predef $(MACRO_CSRC) macro.c: macro_predef ./macro_predef > macro.c diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c index 19342358a..5aebfd4fe 100644 --- a/src/src/tls-openssl.c +++ b/src/src/tls-openssl.c @@ -2577,7 +2577,7 @@ static uschar * corked = NULL; static int c_size = 0, c_len = 0; DEBUG(D_tls) debug_printf("%s(%p, %lu%s)\n", __FUNCTION__, - buff, (ulong)len, more ? ", more" : ""); + buff, (unsigned long)len, more ? ", more" : ""); /* Lacking a CORK or MSG_MORE facility (such as GnuTLS has) we copy data when "more" is notified. This hack is only ok if small amounts are involved AND only |