From 83b25ec4c0f68c51a7f7291d0bfebbef817fdb0f Mon Sep 17 00:00:00 2001 From: Sven Nierlein Date: Fri, 13 Oct 2023 09:48:30 +0200 Subject: [PATCH] fix typo in comment left over from copy/pasted code. --- src/naemon/objects.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/naemon/objects.c b/src/naemon/objects.c index 9023cf08..18f25605 100644 --- a/src/naemon/objects.c +++ b/src/naemon/objects.c @@ -141,7 +141,7 @@ int fcache_objects(char *cache_file) result = OK; - /* move the temp file to the status log (overwrite the old status log) */ + /* move the temp file to the objects data file (overwrite the old objects.cache) */ if (my_rename(tmp_file, cache_file)) { unlink(tmp_file); nm_log(NSLOG_RUNTIME_ERROR, "Error: Unable to update cache data file '%s': %s", cache_file, strerror(errno));