From d9028dec3b81c84560c580008fa68490f049e723 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Tue, 30 Apr 2013 14:03:40 +0300 Subject: [PATCH] Set config mtime to current time if an option is changed This functionality got mistakenly circumvented in commit 3f541fc and then removed entirely in commit bd61d7f. --- source/config.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/config.cpp b/source/config.cpp index 11092c1..75784e3 100644 --- a/source/config.cpp +++ b/source/config.cpp @@ -35,6 +35,7 @@ bool Config::set_option(const string &opt, const string &val) { result = true; changed = true; + mtime = Time::now(); } i->second.value = val; } -- 2.45.2