summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2019-04-19 16:06:43 -0700
committerKevin McCarthy <kevin@8t8.us>2019-04-19 16:06:43 -0700
commit3eb82b303103ebdca0cf73480d200bd3fa41b694 (patch)
tree1704caee41f105b67e7cd15b97e1f0402da65237
parent44037a5344d91b0fbb3f30c9e62419be5e271c4a (diff)
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.
-rw-r--r--pgppubring.c2
1 files changed, 1 insertions, 1 deletions
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)
{