diff options
-rw-r--r-- | source4/smbd/server.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/smbd/server.c b/source4/smbd/server.c index 24ac3ed28c..d44ecff865 100644 --- a/source4/smbd/server.c +++ b/source4/smbd/server.c @@ -234,6 +234,8 @@ static int binary_smbd_main(const char *binary_name, int argc, const char *argv[ if (sizeof(uint16_t) < 2 || sizeof(uint32_t) < 4 || sizeof(uint64_t) < 8) { DEBUG(0,("ERROR: Samba is not configured correctly for the word size on your machine\n")); + DEBUGADD(0,("sizeof(uint16_t) = %u, sizeof(uint32_t) %u, sizeof(uint64_t) = %u\n", + sizeof(uint16_t), sizeof(uint32_t), sizeof(uint64_t))); exit(1); } |