loc_path          821 ext/standard/http_fopen_wrapper.c 			char loc_path[HTTP_HEADER_BLOCK_SIZE];
loc_path          843 ext/standard/http_fopen_wrapper.c 							snprintf(loc_path, sizeof(loc_path) - 1, "%s%s", resource->path, location);
loc_path          845 ext/standard/http_fopen_wrapper.c 							snprintf(loc_path, sizeof(loc_path) - 1, "%s/%s", resource->path, location);
loc_path          848 ext/standard/http_fopen_wrapper.c 						snprintf(loc_path, sizeof(loc_path) - 1, "/%s", location);
loc_path          851 ext/standard/http_fopen_wrapper.c 					strlcpy(loc_path, location, sizeof(loc_path));
loc_path          854 ext/standard/http_fopen_wrapper.c 					snprintf(new_path, sizeof(new_path) - 1, "%s://%s:%d%s", resource->scheme, resource->host, resource->port, loc_path);
loc_path          856 ext/standard/http_fopen_wrapper.c 					snprintf(new_path, sizeof(new_path) - 1, "%s://%s%s", resource->scheme, resource->host, loc_path);