diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 2 | ||||
-rw-r--r-- | tools/gpgsplit.c | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index e8f9297c2..c5e0cd578 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -19,7 +19,7 @@ ## Process this file with automake to produce Makefile.in EXTRA_DIST = lspgpot ring-a-party mail-signed-keys -INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl +INCLUDES = -I.. -I$(top_srcdir)/include -I$(top_srcdir)/intl needed_libs = ../cipher/libcipher.a \ ../mpi/libmpi.a ../util/libutil.a @INTLLIBS@ diff --git a/tools/gpgsplit.c b/tools/gpgsplit.c index 609587ebd..3094550f1 100644 --- a/tools/gpgsplit.c +++ b/tools/gpgsplit.c @@ -19,7 +19,7 @@ */ /* - * TODO: Add an option to uncompress packets. This should come wuite handy. + * TODO: Add an option to uncompress packets. This should come quite handy. */ #include <config.h> @@ -49,13 +49,14 @@ enum cmd_and_opt_values { aNull = 0, oPrefix = 'p', aTest }; +#warning Add an option to split a keyring into reasonable sized chunks. static ARGPARSE_OPTS opts[] = { - { 301, NULL, 0, "@\nOptions:\n " }, + { 301, NULL, 0, "@Options:\n " }, { oVerbose, "verbose", 0, "verbose" }, - { oPrefix, "prefix", 2, "|STRING| Prepend filenames with STRING" }, + { oPrefix, "prefix", 2, "|STRING|Prepend filenames with STRING" }, {0} }; |