diff options
author | Jeremy Allison <jra@samba.org> | 2009-02-23 16:22:43 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-02-23 16:22:43 -0800 |
commit | faa1100d229aef56da5d48f5c19ec901e520f8ef (patch) | |
tree | 4f5bf875d05a91905ace8766c3d342770474eda9 /source3/client | |
parent | bcd6e5ec3315b14cedf7437a70c34d233ded082e (diff) | |
download | samba-faa1100d229aef56da5d48f5c19ec901e520f8ef.tar.gz samba-faa1100d229aef56da5d48f5c19ec901e520f8ef.tar.xz samba-faa1100d229aef56da5d48f5c19ec901e520f8ef.zip |
More warning fixes for Solaris.
Jeremy.
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 2f9e3c0d49..aaa9e35d96 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1784,13 +1784,13 @@ static struct file_list { Free a file_list structure. ****************************************************************************/ -static void free_file_list (struct file_list *list_head) +static void free_file_list (struct file_list *l_head) { struct file_list *list, *next; - for (list = list_head; list; list = next) { + for (list = l_head; list; list = next) { next = list->next; - DLIST_REMOVE(list_head, list); + DLIST_REMOVE(l_head, list); SAFE_FREE(list->file_path); SAFE_FREE(list); } |