diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-08-05 19:36:53 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-08-05 19:36:53 -0400 |
commit | 4b994ffed113aaa4cc4363c34853cab5a13280c4 (patch) | |
tree | 2b104d0d88f7605d271a40bbded9e5e60991f03b /IkiWiki/Setup | |
parent | c8d3626c51bdc53781d9431b1da88ae1e92dc2d5 (diff) |
avoid forcing syslog setting
This avoids forcing the setting to 0 if it was not set at all.
Diffstat (limited to 'IkiWiki/Setup')
-rw-r--r-- | IkiWiki/Setup/Standard.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Setup/Standard.pm b/IkiWiki/Setup/Standard.pm index 8a11b2ec6..92f887f0c 100644 --- a/IkiWiki/Setup/Standard.pm +++ b/IkiWiki/Setup/Standard.pm @@ -86,7 +86,7 @@ sub gendump ($) { #{{{ my @ret; # disable logging to syslog while dumping - $config{syslog}=0; + $config{syslog}=undef; push @ret, dumpvalues(\%setup, IkiWiki::getsetup()); foreach my $pair (IkiWiki::Setup::getsetup()) { |