* Regression fix: query flags (e.g., "-qsf") were broken.

This commit is contained in:
Eelco Dolstra 2003-12-02 10:21:40 +00:00
parent a3ca74a1c3
commit 0c804c6775
1 changed files with 2 additions and 0 deletions

View File

@ -402,6 +402,8 @@ void run(Strings args)
op = opUninstall;
else if (arg == "--query" || arg == "-q")
op = opQuery;
else if (arg[0] == '-')
opFlags.push_back(arg);
else
opArgs.push_back(arg);