From 27fcbf87f3a11a033fdfb1e5e2a7f415b7125bdc Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 17 Oct 2005 23:00:08 +0000 Subject: [PATCH] Add a missing struct initializer field svn:r5264 --- src/or/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/config.c b/src/or/config.c index 09fc5e25be..96c4b37532 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -62,7 +62,7 @@ static config_abbrev_t _option_abbrevs[] = { PLURAL(RendExcludeNode), PLURAL(StrictEntryNode), PLURAL(StrictExitNode), - { "l", "Log", 1}, + { "l", "Log", 1, 0}, { "BandwidthRateBytes", "BandwidthRate", 0, 0}, { "BandwidthBurstBytes", "BandwidthBurst", 0, 0}, { "DirFetchPostPeriod", "StatusFetchPeriod", 0, 0},