From: Kevin McCarthy Date: Fri, 19 Apr 2019 23:06:43 +0000 (-0700) Subject: Increase mutt_pgpring path size to silence warning. X-Git-Tag: mutt-1-12-rel~49 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3eb82b303103ebdca0cf73480d200bd3fa41b694;p=mutt Increase mutt_pgpring path size to silence warning. This is an independent binary, and doesn't have access to the BUFFER functions. The binary is used by very few (if any) people at this point, so just make the minimum fix to silence the warning. --- diff --git a/pgppubring.c b/pgppubring.c index 5312f924..5e64fb90 100644 --- a/pgppubring.c +++ b/pgppubring.c @@ -86,7 +86,7 @@ int main (int argc, char * const argv[]) char *env_pgppath, *env_home; char pgppath[_POSIX_PATH_MAX]; - char kring[_POSIX_PATH_MAX]; + char kring[_POSIX_PATH_MAX+12]; while ((c = getopt (argc, argv, "f25sk:S")) != EOF) {