| 1197 | } |
| 1198 | |
| 1199 | static void get_remote_object_list(unsigned char parent) |
| 1200 | { |
| 1201 | char path[] = "objects/XX/"; |
| 1202 | static const char hex[] = "0123456789abcdef"; |
| 1203 | unsigned int val = parent; |
| 1204 | |
| 1205 | path[8] = hex[val >> 4]; |
| 1206 | path[9] = hex[val & 0xf]; |
| 1207 | remote_dir_exists[val] = 0; |
| 1208 | remote_ls(path, (PROCESS_FILES | PROCESS_DIRS), |
| 1209 | process_ls_object, &val); |
| 1210 | } |
| 1211 | |
| 1212 | static int locking_available(void) |
| 1213 | { |
no test coverage detected