Fixed crash in history builtin for inputs like : history --search -prefix "echo"

This commit is contained in:
Siteshwar Vashisht 2012-06-10 01:08:19 +05:30
parent e96dabadf1
commit ca61d0ee8b

View file

@ -3622,7 +3622,7 @@ static int builtin_history( parser_t &parser, wchar_t **argv )
woptind = 0;
history_t *history = reader_get_history();
while((opt = wgetopt_long( argc, argv, L"pdsc", long_options, &opt_index )) != -1)
while((opt = wgetopt_long_only( argc, argv, L"pdscvl", long_options, &opt_index )) != -1)
{
switch(opt)
{