summaryrefslogtreecommitdiff
path: root/source4/heimdal/lib
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-10-29 06:59:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:45:30 -0500
commit0ea06b97c295baa22e0f2cf9f6e06338d1ba7c2f (patch)
treecb642c177b74d75cb6bd61c9fc3169de074962ab /source4/heimdal/lib
parent66014ca14d25290817b5ab64cf56690decf2f26e (diff)
downloadsamba-0ea06b97c295baa22e0f2cf9f6e06338d1ba7c2f.tar.gz
samba-0ea06b97c295baa22e0f2cf9f6e06338d1ba7c2f.tar.bz2
samba-0ea06b97c295baa22e0f2cf9f6e06338d1ba7c2f.zip
r11392: After confirmation from Love, fix a compiler warning
(This used to be commit a0b4036ba6ae423bab3ec698d3e404f03bb0f9d5)
Diffstat (limited to 'source4/heimdal/lib')
-rwxr-xr-xsource4/heimdal/lib/gssapi/cfx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/heimdal/lib/gssapi/cfx.c b/source4/heimdal/lib/gssapi/cfx.c
index 1cc510d6fc..3e7592b3a7 100755
--- a/source4/heimdal/lib/gssapi/cfx.c
+++ b/source4/heimdal/lib/gssapi/cfx.c
@@ -77,7 +77,7 @@ wrap_length_cfx(krb5_crypto crypto,
if (ret) {
return ret;
}
- if (padsize > 1) {
+ if (*padsize > 1) {
/* XXX check this */
*padlength = *padsize - (input_length % *padsize);
}