diff options
author | Volker Lendecke <vl@samba.org> | 2009-09-28 19:50:24 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-09-28 19:50:51 +0200 |
commit | 80ef513e90569e5e559fa0dcb62b75423b096a89 (patch) | |
tree | 7e29090eb3e88eab2e5acae25d2dbdad0e1b21dd | |
parent | 218549017644aee9a7bed1905908ffdb774efd06 (diff) | |
download | samba-80ef513e90569e5e559fa0dcb62b75423b096a89.tar.gz samba-80ef513e90569e5e559fa0dcb62b75423b096a89.tar.bz2 samba-80ef513e90569e5e559fa0dcb62b75423b096a89.zip |
s3:winbind: remove a pointless initialization
-rw-r--r-- | source3/winbindd/winbindd_pam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_pam.c b/source3/winbindd/winbindd_pam.c index b58a9dae15..178b3ea74b 100644 --- a/source3/winbindd/winbindd_pam.c +++ b/source3/winbindd/winbindd_pam.c @@ -524,7 +524,7 @@ static void setup_return_cc_name(struct winbindd_cli_state *state, const char *c static uid_t get_uid_from_state(struct winbindd_cli_state *state) { - uid_t uid = -1; + uid_t uid; uid = state->request->data.auth.uid; |