From: Pavel TvrdĂ­k Date: Wed, 20 Jan 2016 14:41:15 +0000 (+0100) Subject: Add forgotten semicolon X-Git-Tag: v2.0.0-pre0~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=259052199ba82f0f37b87416592e2e2ddbdaee5f;p=thirdparty%2Fbird.git Add forgotten semicolon --- diff --git a/sysdep/unix/config.Y b/sysdep/unix/config.Y index d6ab8cab7..f9a92900a 100644 --- a/sysdep/unix/config.Y +++ b/sysdep/unix/config.Y @@ -92,6 +92,7 @@ timeformat_which: | PROTOCOL { $$ = &new_config->tf_proto; } | BASE { $$ = &new_config->tf_base; } | LOG { $$ = &new_config->tf_log; } + ; timeformat_spec: timeformat_which TEXT { *$1 = (struct timeformat){$2, NULL, 0}; }