Fix the `lt'' comparison in `set filter''

PR:		13819
Submitted by:	Dean M. Phillips <dphill@inav.net>
This commit is contained in:
Brian Somers 1999-09-21 01:02:05 +00:00
parent 40360b1bbb
commit 3927c47b04
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=51489

View File

@ -622,7 +622,7 @@ filter_Nam2Proto(int argc, char const *const *argv)
return proto;
}
static const char *opname[] = {"none", "eq", "gt", "unknown", "lt"};
static const char *opname[] = {"none", "eq", "gt", "lt"};
const char *
filter_Op2Nam(int op)