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:
parent
2db5c10ac5
commit
becc43b87d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user