diff options
author | Herb Lewis <herb@samba.org> | 2003-01-07 17:43:37 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2003-01-07 17:43:37 +0000 |
commit | 3981c303a3b688295a50917098da2224fddb4537 (patch) | |
tree | c42e311f32b6d9258ce1876cda805ab7f60fdf03 | |
parent | 26c01d3f7bc683c416abfe00a6ea19a8c3265185 (diff) | |
download | samba-3981c303a3b688295a50917098da2224fddb4537.tar.gz samba-3981c303a3b688295a50917098da2224fddb4537.tar.bz2 samba-3981c303a3b688295a50917098da2224fddb4537.zip |
cannot make assignments to const values.
(This used to be commit e3b1e64d9f23347a5ecefeb15329b6ec8971a55e)
-rw-r--r-- | source3/nsswitch/wbinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/wbinfo.c b/source3/nsswitch/wbinfo.c index 720cf5822c..f03b0493de 100644 --- a/source3/nsswitch/wbinfo.c +++ b/source3/nsswitch/wbinfo.c @@ -573,7 +573,7 @@ static BOOL print_domain_groups(void) static BOOL wbinfo_set_auth_user(char *username) { - const char *password; + char *password; fstring user, domain; /* Separate into user and password */ |