From: Mark Wooding Date: Mon, 22 Dec 2014 20:32:58 +0000 (+0000) Subject: tmpdir.c: Make the `-C PATH' option actually work. X-Git-Tag: 1.2.4~3 X-Git-Url: https://git.distorted.org.uk/~mdw/checkpath/commitdiff_plain/8bc488f070fea525b4e0c66e3db6471557070621 tmpdir.c: Make the `-C PATH' option actually work. Stupid typo in getopt(3) string. --- diff --git a/tmpdir.c b/tmpdir.c index 71c7ab0..c7f4c5a 100644 --- a/tmpdir.c +++ b/tmpdir.c @@ -324,7 +324,7 @@ int main(int argc, char *argv[]) { "group", OPTF_ARGREQ, 0, 'g' }, { 0, 0, 0, 0 } }; - int i = mdwopt(argc, argv, "hVu" "bcvtg:c:", opts, 0, 0, 0); + int i = mdwopt(argc, argv, "hVu" "bcvtg:C:", opts, 0, 0, 0); if (i < 0) break;