1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

krb5_wrap: Fix build error when not using heimdal.

Just a small typo fix where type and variable were flipped.

Signed-off-by: Jose A. Rivera <jarrpa@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>

Autobuild-User(master): Ralph Böhme <slow@samba.org>
Autobuild-Date(master): Sat Jun 25 22:43:27 CEST 2016 on sn-devel-144
This commit is contained in:
Jose A. Rivera 2016-06-25 10:47:52 -05:00 committed by Ralph Boehme
parent 2db5c10ac5
commit becc43b87d

View File

@ -162,7 +162,7 @@ krb5_error_code smb_krb5_mk_error(krb5_context context,
if (e_text != NULL) {
dec_err.text.length = strlen(e_text);
dec_err.text.data = discard_const_p(e_text, char);
dec_err.text.data = discard_const_p(char, e_text);
}
if (e_data != NULL) {
dec_err.e_data = *e_data;