diff options
author | Günther Deschner <gd@samba.org> | 2006-08-22 00:36:31 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:38:46 -0500 |
commit | 58247fea05a7420d8eafa0b8ea03944e9422cb6c (patch) | |
tree | 3fcd4d77283ada4b037a77574fd22b72f3a26a36 /source3/libads | |
parent | 23535f7d49d455042f60c1123bade66bbbf592f8 (diff) | |
download | samba-58247fea05a7420d8eafa0b8ea03944e9422cb6c.tar.gz samba-58247fea05a7420d8eafa0b8ea03944e9422cb6c.tar.bz2 samba-58247fea05a7420d8eafa0b8ea03944e9422cb6c.zip |
r17677: There is no need for a 2nd krb5_to_nt_status function, is there?
Michael Adam/Volker, please check.
Guenther
(This used to be commit d0feb85781f69325ee70aff98370cfac037c4cc2)
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/ads_status.c | 2 | ||||
-rw-r--r-- | source3/libads/krb5_errs.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/source3/libads/ads_status.c b/source3/libads/ads_status.c index 00427936ad..07c60c5ac0 100644 --- a/source3/libads/ads_status.c +++ b/source3/libads/ads_status.c @@ -83,7 +83,7 @@ NTSTATUS ads_ntstatus(ADS_STATUS status) #endif #ifdef HAVE_KRB5 case ENUM_ADS_ERROR_KRB5: - return krb5_to_ntstatus(status.err.rc); + return krb5_to_nt_status(status.err.rc); #endif default: break; diff --git a/source3/libads/krb5_errs.c b/source3/libads/krb5_errs.c index e73482522b..38d34f8676 100644 --- a/source3/libads/krb5_errs.c +++ b/source3/libads/krb5_errs.c @@ -55,6 +55,7 @@ static const struct { #if defined(KRB5KRB_ERR_RESPONSE_TOO_BIG) {KRB5KRB_ERR_RESPONSE_TOO_BIG, NT_STATUS_PROTOCOL_UNREACHABLE}, #endif + {KRB5KDC_ERR_NONE, NT_STATUS_OK}, {0, NT_STATUS_OK} }; |