Ignore:
Timestamp:
Aug 7, 2008, 11:49:04 AM (17 years ago)
Author:
Paul Smedley
Message:

Update trunk to 3.2.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/samba/source/lib/smbconf/smbconf_util.c

    r133 r141  
    133133                                   uint32_t num_entries, uint32_t *entry)
    134134{
    135         uint32_t i;
     135        int32_t i;
    136136
    137137        if ((string == NULL) || (list == NULL) || (num_entries == 0)) {
     
    139139        }
    140140
    141         for (i = num_entries - 1; i >= 0; i++) {
     141        for (i = num_entries - 1; i >= 0; i--) {
    142142                if (strequal(string, list[i])) {
    143143                        if (entry != NULL) {
Note: See TracChangeset for help on using the changeset viewer.