summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2020-07-16 17:39:20 +0100
committerAlexander Larsson <alexander.larsson@gmail.com>2020-08-24 08:58:08 +0200
commit254a885879b567923df54ffb69616b3f51a593cf (patch)
tree222eb234d7e982791f84eec9a2b9a96d6b46bbdc
parent98e372e85eafb22364a82853d3d3fcbad002ba62 (diff)
downloadflatpak-254a885879b567923df54ffb69616b3f51a593cf.tar.gz
dir: Clarify a comment about caching
`flatpak-dir.c` supports two caches for `summary{,.sig}` files: one in memory (per `FlatpakDir` instance) and one on disk (shared between all users of the repository). Clarify in this comment which one is being referred to. Signed-off-by: Philip Withnall <withnall@endlessm.com>
-rw-r--r--common/flatpak-dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/flatpak-dir.c b/common/flatpak-dir.c
index 23fcd350..7aae8ffa 100644
--- a/common/flatpak-dir.c
+++ b/common/flatpak-dir.c
@@ -10771,7 +10771,7 @@ flatpak_dir_remote_fetch_summary (FlatpakDir *self,
is_local = g_str_has_prefix (url, "file:");
- /* No caching for local files */
+ /* No in-memory caching for local files */
if (!is_local)
{
if (flatpak_dir_lookup_cached_summary (self, out_summary, out_summary_sig, name_or_uri, url))