* Paths starting with '/' (e.g., "/tags", "/tagged-blobs") hold objects that * were directly requested by 'pending' objects rather than discovered during * tree traversal. */
| 288 | * tree traversal. |
| 289 | */ |
| 290 | static int path_is_for_direct_objects(const char *path) |
| 291 | { |
| 292 | ASSERT(path); |
| 293 | return path[0] == '/'; |
| 294 | } |
| 295 | |
| 296 | /* |
| 297 | * For each path in paths_to_explore, walk the trees another level |