[remote] do not automatically descend into sub directories on the remote

pull/870/head
Timothy Stack 3 years ago
parent 6ff3badc62
commit 0a0e355696

@ -494,6 +494,9 @@ int poll_paths(struct list *path_list)
strcmp(entry->d_name, "..") == 0) {
continue;
}
if (entry->d_type != DT_REG) {
continue;
}
char full_path[PATH_MAX];

Loading…
Cancel
Save