summaryrefslogtreecommitdiff
path: root/source4/auth
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2012-04-26 17:56:38 -0400
committerSimo Sorce <idra@samba.org>2012-05-04 16:51:29 +0200
commit548046ff4df23f08e1f652136e7322623885d7ab (patch)
tree76e8c7a2d5587347699e5af3616debef3c0a35b8 /source4/auth
parentb776bc5f72efac87244393a2bf1e5c9278bdaf15 (diff)
downloadsamba-548046ff4df23f08e1f652136e7322623885d7ab.tar.gz
samba-548046ff4df23f08e1f652136e7322623885d7ab.tar.bz2
samba-548046ff4df23f08e1f652136e7322623885d7ab.zip
Fix incompatible assignment warning
Diffstat (limited to 'source4/auth')
-rw-r--r--source4/auth/kerberos/srv_keytab.c2
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++) {