diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-07-29 07:56:03 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:15:10 -0500 |
commit | edcbd24b6a98c25be083fa30971ea4ca04600871 (patch) | |
tree | 2d680a3f9a3146afd1ff6cd1c797d431d619e15f /source4 | |
parent | 3d3bd93403c0a371f16cd8e13f7f563c4601122a (diff) | |
download | samba-edcbd24b6a98c25be083fa30971ea4ca04600871.tar.gz samba-edcbd24b6a98c25be083fa30971ea4ca04600871.tar.bz2 samba-edcbd24b6a98c25be083fa30971ea4ca04600871.zip |
r17306: fix compiler warning
metze
(This used to be commit cee012c5702da225c81f82d90193b500e3707613)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/winbind/wb_pam_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/winbind/wb_pam_auth.c b/source4/winbind/wb_pam_auth.c index 07c7e0eb02..3eb49e2def 100644 --- a/source4/winbind/wb_pam_auth.c +++ b/source4/winbind/wb_pam_auth.c @@ -37,7 +37,7 @@ struct pam_auth_crap_state { uint32_t logon_parameters; const char *domain_name; const char *user_name; - const char *unix_username; + char *unix_username; const char *workstation; DATA_BLOB chal, nt_resp, lm_resp; |