diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-06-01 10:17:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:53:08 -0500 |
commit | aec9320dc2fdf03d5187f60749c5f3ad238bf58d (patch) | |
tree | 013fd5eb935f6fc5dc0e77afb918e58dcb321350 | |
parent | 6ebe9f2a50ce2c3b408f93e886da26272b043c6c (diff) | |
download | samba-aec9320dc2fdf03d5187f60749c5f3ad238bf58d.tar.gz samba-aec9320dc2fdf03d5187f60749c5f3ad238bf58d.tar.bz2 samba-aec9320dc2fdf03d5187f60749c5f3ad238bf58d.zip |
r23288: give more info...
metze
(This used to be commit 7fae261a494b4b71c3022f63112ef23ea495c769)
-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); } |