From aec9320dc2fdf03d5187f60749c5f3ad238bf58d Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 1 Jun 2007 10:17:02 +0000 Subject: r23288: give more info... metze (This used to be commit 7fae261a494b4b71c3022f63112ef23ea495c769) --- source4/smbd/server.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/smbd/server.c') 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); } -- cgit