diff --git a/daemon/recent_store.c b/daemon/recent_store.c index d2a60a15..659333c1 100644 --- a/daemon/recent_store.c +++ b/daemon/recent_store.c @@ -88,7 +88,11 @@ ladish_recent_store_load( fd = open(store_ptr->path, O_RDONLY); if (fd == -1) { - log_error("open(%s) failed: %d (%s)", store_ptr->path, errno, strerror(errno)); + if (errno != ENOENT) + { + log_error("open(%s) failed: %d (%s)", store_ptr->path, errno, strerror(errno)); + } + goto exit; }