From 9a19dcd7cbf017f69be90dc75e73f6b89afbbd39 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Wed, 14 Aug 2013 10:13:56 +0200 Subject: [PATCH] pkgman search: '-i' option wasn't handled --- src/bin/pkgman/command_search.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pkgman/command_search.cpp b/src/bin/pkgman/command_search.cpp index 2dc9d4a82a..371987c61f 100644 --- a/src/bin/pkgman/command_search.cpp +++ b/src/bin/pkgman/command_search.cpp @@ -78,7 +78,7 @@ SearchCommand::Execute(int argc, const char* const* argv) }; opterr = 0; // don't print errors - int c = getopt_long(argc, (char**)argv, "hu", sLongOptions, NULL); + int c = getopt_long(argc, (char**)argv, "hiu", sLongOptions, NULL); if (c == -1) break;