Ignore:
Timestamp:
May 24, 2009, 7:17:10 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 to 3.3.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/client/client.c

    r206 r221  
    17861786****************************************************************************/
    17871787
    1788 static void free_file_list (struct file_list *list_head)
     1788static void free_file_list (struct file_list *l_head)
    17891789{
    17901790        struct file_list *list, *next;
    17911791
    1792         for (list = list_head; list; list = next) {
     1792        for (list = l_head; list; list = next) {
    17931793                next = list->next;
    1794                 DLIST_REMOVE(list_head, list);
     1794                DLIST_REMOVE(l_head, list);
    17951795                SAFE_FREE(list->file_path);
    17961796                SAFE_FREE(list);
Note: See TracChangeset for help on using the changeset viewer.