Searched refs:escaped_etag (Results 1 – 1 of 1) sorted by relevance
/systemd-251/src/import/ |
D | pull-common.c | 129 _cleanup_free_ char *escaped_url = NULL, *escaped_etag = NULL; in pull_make_path() local 143 escaped_etag = xescape(etag, FILENAME_ESCAPE); in pull_make_path() 144 if (!escaped_etag) in pull_make_path() 148 path = strjoin(image_root, "/", strempty(prefix), escaped_url, escaped_etag ? "." : "", in pull_make_path() 149 strempty(escaped_etag), strempty(suffix)); in pull_make_path() 166 path = strjoin(image_root, "/", strempty(prefix), hash, escaped_etag ? "." : "", in pull_make_path() 167 strempty(escaped_etag), strempty(suffix)); in pull_make_path()
|