Ignore:
Timestamp:
Jul 2, 2011, 3:35:33 PM (14 years ago)
Author:
Herwig Bauernfeind
Message:

Samba 3.5: Update trunk to 3.5.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/smbd/conn.c

    r414 r596  
    198198        pipes_struct *plist = NULL;
    199199        connection_struct *conn;
     200        bool ret = true;
    200201
    201202        if (deadtime <= 0)
     
    210211                        conn->lastused = t;
    211212                        conn->lastused_count = t;
     213                        age = 0;
    212214                }
    213215
     
    218220
    219221                if (conn->num_files_open > 0 || age < deadtime) {
    220                         return False;
     222                        ret = false;
    221223                }
    222224        }
     
    230232             plist = get_next_internal_pipe(plist)) {
    231233                if (num_pipe_handles(plist->pipe_handles) != 0) {
    232                         return False;
     234                        ret = false;
     235                        break;
    233236                }
    234237        }
    235238       
    236         return True;
     239        return ret;
    237240}
    238241
Note: See TracChangeset for help on using the changeset viewer.