aboutsummaryrefslogtreecommitdiffstats
path: root/smbutil.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2010-04-29 10:44:44 +0200
committerMatthias Andree <matthias.andree@gmx.de>2010-04-29 10:44:44 +0200
commit43b563fabd2d86161677fd2edd83ff1a9f1625e3 (patch)
treefb52448529a250f10eb37711b6f38d0b09fde5f4 /smbutil.c
parentca89de66107d7fed50eac1f9beb0f16655c8491d (diff)
downloadfetchmail-43b563fabd2d86161677fd2edd83ff1a9f1625e3.tar.gz
fetchmail-43b563fabd2d86161677fd2edd83ff1a9f1625e3.tar.bz2
fetchmail-43b563fabd2d86161677fd2edd83ff1a9f1625e3.zip
Fix two warning: the address of * will always evaluate as 'true'.
Diffstat (limited to 'smbutil.c')
-rw-r--r--smbutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/smbutil.c b/smbutil.c
index a26b3496..ed6ec8a5 100644
--- a/smbutil.c
+++ b/smbutil.c
@@ -26,7 +26,7 @@ char versionString[] ="libntlm version 0.21";
#define AddBytes(ptr, header, buf, count) \
{ \
-if (buf && count) \
+if (buf != NULL && count != 0) \
{ \
SSVAL(&ptr->header.len,0,count); \
SSVAL(&ptr->header.maxlen,0,count); \