diff options
author | Herb Lewis <herb@samba.org> | 2003-01-08 02:18:49 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2003-01-08 02:18:49 +0000 |
commit | 9f49bff0e3c350c65f98c412d6611305bde61ba0 (patch) | |
tree | 4c3dea99595917020cabfe61972f6dbc9ba769f5 /source3/nsswitch | |
parent | 7f4177aa9e85c5d801aefabf39e08e40bce04f7d (diff) | |
download | samba-9f49bff0e3c350c65f98c412d6611305bde61ba0.tar.gz samba-9f49bff0e3c350c65f98c412d6611305bde61ba0.tar.bz2 samba-9f49bff0e3c350c65f98c412d6611305bde61ba0.zip |
cannot assign to const
(This used to be commit 01757e8b510e5475c76423ffe5e3c16b2aca134e)
Diffstat (limited to 'source3/nsswitch')
-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 */ |