summaryrefslogtreecommitdiffstats
path: root/src/aof.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-04 17:58:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-04 17:58:42 +0000
commitd6a20015c95e2a15f0f8dc6fcd73d3f5695e32e7 (patch)
tree9932358072ca6e6beb6854aba698ecbb3b5532aa /src/aof.c
parentReleasing progress-linux version 5:7.2.4-1~progress7.99u1. (diff)
downloadredis-d6a20015c95e2a15f0f8dc6fcd73d3f5695e32e7.tar.xz
redis-d6a20015c95e2a15f0f8dc6fcd73d3f5695e32e7.zip
Merging upstream version 5:7.2.5.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/aof.c')
-rw-r--r--src/aof.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/aof.c b/src/aof.c
index a89142b..6da6e1a 100644
--- a/src/aof.c
+++ b/src/aof.c
@@ -117,7 +117,9 @@ aofInfo *aofInfoDup(aofInfo *orig) {
return ai;
}
-/* Format aofInfo as a string and it will be a line in the manifest. */
+/* Format aofInfo as a string and it will be a line in the manifest.
+ *
+ * When update this format, make sure to update redis-check-aof as well. */
sds aofInfoFormat(sds buf, aofInfo *ai) {
sds filename_repr = NULL;