From: Ondrej Zajicek Date: Tue, 27 Nov 2012 00:30:09 +0000 (+0100) Subject: Removes some nonsense. X-Git-Tag: v1.3.9~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b31774eeb01a2f63e4ce4dc83f36ffd17879593e;p=thirdparty%2Fbird.git Removes some nonsense. --- diff --git a/filter/filter.c b/filter/filter.c index fb2034ee9..44fcf2932 100644 --- a/filter/filter.c +++ b/filter/filter.c @@ -622,9 +622,6 @@ interpret(struct f_inst *what) case T_VOID: runtime( "Can't operate with values of type void" ); case T_INT: if (v2.val.i == 0) runtime( "Mother told me not to divide by 0" ); res.val.i = v1.val.i / v2.val.i; break; - case T_IP: if (v2.type != T_INT) - runtime( "Incompatible types in / operator" ); - break; default: runtime( "Usage of unknown type" ); } break;