Ticket #52: ndpsmb.diff
File ndpsmb.diff, 802 bytes (added by , 17 years ago) |
---|
-
ndpsmb/ndpsmb.c
1183 1183 smb_response resp = {0}; 1184 1184 smbwrp_fileinfo * finfo = (smbwrp_fileinfo *)pConn->mem; 1185 1185 char path[CCHMAXPATH+1] = {0}; 1186 int retry = 0; 1186 1187 1187 log("NdpQueryInfo in <%s>\n", szPath); 1188 do 1189 { 1190 log("NdpQueryInfo in <%s>, retry = %d\n", szPath, retry); 1188 1191 1189 1192 do { 1190 1193 if (ph->fsphStrChr(szPath, '*') || ph->fsphStrChr(szPath, '?')) … … 1273 1276 } 1274 1277 } 1275 1278 } while (0); 1279 log("NdpQueryInfo <%s> (%s) %d %d\n", szPath, path, rc, pConn->rc); 1276 1280 1277 log("NdpQueryInfo <%s> (%s) %d %d\n", szPath, path, rc, pConn->rc); 1281 retry = rc && !retry; 1282 } while( retry ); 1283 1278 1284 return rc; 1279 1285 } 1280 1286