From: Steinar H. Gunderson Date: Sat, 17 Oct 2020 09:32:17 +0000 (+0200) Subject: Fix the -r short option. X-Git-Tag: 1.0.5~1 X-Git-Url: https://git.sesse.net/?p=plocate;a=commitdiff_plain;h=f7dddf5cd31d26be12c4c4d718d257fe012fe368 Fix the -r short option. --- diff --git a/plocate.cpp b/plocate.cpp index ac0ca5e..c2bb17c 100644 --- a/plocate.cpp +++ b/plocate.cpp @@ -700,7 +700,7 @@ int main(int argc, char **argv) setlocale(LC_ALL, ""); for (;;) { int option_index = 0; - int c = getopt_long(argc, argv, "bcd:hil:n:0wVD", long_options, &option_index); + int c = getopt_long(argc, argv, "bcd:hil:n:0rwVD", long_options, &option_index); if (c == -1) { break; }