diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-12-06 09:53:42 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-06 09:54:19 +0100 |
commit | 8fd3a7c43e925e452b7738c50811d8a00b35babb (patch) | |
tree | 1ac3e893aebe0bf4944600729b19648a1de8eec0 /source3/libads/sasl.c | |
parent | 8ab33fc33593d829258990b208c4636e3fe321e0 (diff) | |
download | samba-8fd3a7c43e925e452b7738c50811d8a00b35babb.tar.gz samba-8fd3a7c43e925e452b7738c50811d8a00b35babb.tar.xz samba-8fd3a7c43e925e452b7738c50811d8a00b35babb.zip |
libads: fix typo
metze
(This used to be commit b55b19190d9c1199be13727a75a5936d6f5f15a8)
Diffstat (limited to 'source3/libads/sasl.c')
-rw-r--r-- | source3/libads/sasl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/sasl.c b/source3/libads/sasl.c index 3b3838e390..798d0b4365 100644 --- a/source3/libads/sasl.c +++ b/source3/libads/sasl.c @@ -329,7 +329,7 @@ static ADS_STATUS ads_sasl_gssapi_unwrap(ADS_STRUCT *ads) return ADS_ERROR_NT(NT_STATUS_ACCESS_DENIED); } - if (wrapped.length < wrapped.length) { + if (wrapped.length < unwrapped.length) { return ADS_ERROR_NT(NT_STATUS_INTERNAL_ERROR); } |