diff options
author | Simo Sorce <idra@samba.org> | 2012-04-26 17:56:38 -0400 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2012-05-04 16:51:29 +0200 |
commit | 548046ff4df23f08e1f652136e7322623885d7ab (patch) | |
tree | 76e8c7a2d5587347699e5af3616debef3c0a35b8 /source4 | |
parent | b776bc5f72efac87244393a2bf1e5c9278bdaf15 (diff) | |
download | samba-548046ff4df23f08e1f652136e7322623885d7ab.tar.gz samba-548046ff4df23f08e1f652136e7322623885d7ab.tar.xz samba-548046ff4df23f08e1f652136e7322623885d7ab.zip |
Fix incompatible assignment warning
Diffstat (limited to 'source4')
-rw-r--r-- | source4/auth/kerberos/srv_keytab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/kerberos/srv_keytab.c b/source4/auth/kerberos/srv_keytab.c index b7a2079520..318c642c73 100644 --- a/source4/auth/kerberos/srv_keytab.c +++ b/source4/auth/kerberos/srv_keytab.c @@ -247,7 +247,7 @@ static krb5_error_code keytab_add_keys(TALLOC_CTX *parent_ctx, krb5_data password; char *unparsed; - password.data = discard_const_p(char *, password_s); + password.data = discard_const_p(char, password_s); password.length = strlen(password_s); for (i = 0; enctypes[i]; i++) { |