Changeset 531
- Timestamp:
- Jan 24, 2011, 1:00:35 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/client/src/ndpsmb.c ¶
r528 r531 889 889 unsigned long action; 890 890 char path[CCHMAXPATH+1] = {0}; 891 int retry = 0; 892 893 debuglocal(9,"NdpQueryPathInfo in [%p] <%s>, retry = %d\n", pConn, szPath, retry); 891 892 debuglocal(9,"NdpQueryPathInfo in [%p] <%s>\n", pConn, szPath); 894 893 895 894 // is wildcard is specified, we suppose parent dir exist, so exit immediately … … 941 940 { 942 941 // remote server not available for first time? 943 if (rc == ERROR_REM_NOT_LIST && retry == 0)942 if (rc == ERROR_REM_NOT_LIST) 944 943 { 945 944 // free current cli resources … … 949 948 // try file list again 950 949 rc = smbwrp_getattr( &pRes->srv, pConn->cli, &finfo); 951 debuglocal(9,"NdpQueryPathInfo remote connection lost, r etry rc = %d\n", rc);950 debuglocal(9,"NdpQueryPathInfo remote connection lost, rc = %d\n", rc); 952 951 } 953 952 switch (rc) … … 1084 1083 // try file list again next loop 1085 1084 rc = smbwrp_filelist( &pRes->srv, pConn->cli, &state); 1086 debuglocal(9,"NdpFindStart remote connection lost, r etry rc = %d\n", rc);1085 debuglocal(9,"NdpFindStart remote connection lost, rc = %d\n", rc); 1087 1086 } 1088 1087
Note:
See TracChangeset
for help on using the changeset viewer.