"GOT", but the "O" is a cute, smiling pufferfish. Index | Thread | Search

From:
Stefan Sperling <stsp@stsp.name>
Subject:
Re: Fix revoked_signers got.conf(5) option
To:
Josh Rickmar <openbsd+lists@zettaport.com>
Cc:
gameoftrees@openbsd.org
Date:
Mon, 4 Jul 2022 20:54:22 +0200

Download raw body.

Thread
On Mon, Jul 04, 2022 at 02:24:46PM -0400, Josh Rickmar wrote:
> Embarassingly, using this option caused configuration parsing errors
> because it was not added to the grammar.  ok?

Yes, thanks!

> diff /home/jrick/src/got
> commit - b9a36ae5ebce5fb8ce9d944a31210917b32c71d8
> path + /home/jrick/src/got
> blob - 75ffe68ef694e38f5138920800c795cdc7b10080
> file + libexec/got-read-gotconfig/parse.y
> --- libexec/got-read-gotconfig/parse.y
> +++ libexec/got-read-gotconfig/parse.y
> @@ -115,6 +115,7 @@ grammar		: /* empty */
>  		| grammar author '\n'
>  		| grammar remote '\n'
>  		| grammar allowed_signers '\n'
> +		| grammar revoked_signers '\n'
>  		;
>  boolean		: STRING {
>  			if (strcasecmp($1, "true") == 0 ||
> 
>