Changeset 727 for branches/client-2.1/src/ndpsmb.c
- Timestamp:
- Nov 12, 2012, 10:48:03 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/client-2.1/src/ndpsmb.c
r589 r727 947 947 smbwrp_fileinfo finfo; 948 948 int rc = 0; 949 int rcCon = 0; 949 950 unsigned long action; 950 951 char path[CCHMAXPATH+1] = {0}; … … 1008 1009 smbwrp_disconnect( pRes, pConn->cli); 1009 1010 // reconnect 1010 smbwrp_connect( pRes, &pConn->cli); 1011 // try file list again 1011 rcCon = smbwrp_connect( pRes, &pConn->cli); 1012 if (rcCon != NO_ERROR) 1013 debuglocal(9,"NdpQueryPathInfo smbwrp_connect rc = %d\n", rcCon); 1014 1015 // try file list again if reconnecting worked 1016 if (rcCon == NO_ERROR) 1012 1017 rc = smbwrp_getattr( &pRes->srv, pConn->cli, &finfo); 1013 debuglocal(9,"NdpQueryPathInfo remote connection lost, rc = %d\n", rc);1014 1018 } 1019 debuglocal(9,"NdpQueryPathInfo smbwrp_getattr, rc = %d\n", rc); 1015 1020 switch (rc) 1016 1021 {
Note:
See TracChangeset
for help on using the changeset viewer.