Sets of IP addresses should work, now. (From now on it is also
possible to write if 1.2.3.4 < 1.2.3.5, but I'm not sure if it is good for anything.)
This commit is contained in:
parent
24eaae9e5d
commit
43fc099b98
1 changed files with 2 additions and 0 deletions
|
@ -55,6 +55,8 @@ val_compare(struct f_val v1, struct f_val v2)
|
|||
if (v1.val.i == v2.val.i) return 0;
|
||||
if (v1.val.i < v2.val.i) return -1;
|
||||
return 1;
|
||||
case T_IP:
|
||||
return ipa_compare(v1.val.ip, v2.val.ip);
|
||||
default: return CMP_ERROR;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue