fix typo
authorFelix Fietkau <nbd@openwrt.org>
Sun, 5 Mar 2006 21:50:44 +0000 (21:50 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 5 Mar 2006 21:50:44 +0000 (21:50 +0000)
SVN-Revision: 3315

openwrt/package/base-files/default/usr/lib/common.awk

index 860c6492e26df88bda1af76fe111685fc296ff08..11454cec19edcb4b8b39cf657a17b94be4a50c3b 100644 (file)
@@ -1,16 +1,11 @@
 function portstr(type, str) {
-       if (str ~ /^[0-9]+-[0-9]+$/) {
-               gsub(/-/, ":", str)
-               if (type == "src") return " --sport " str
-               else return " --dport " str
-       } else {
-               if (insmod_mport != 1) {
-                       print "insmod ipt_multiport >&- 2>&-"
-                       insmod_mport = 1
-               }
-               if (type == "src") return " -m multiport --sports " str
-               else return " -m multiport --dports " str
+       gsub(/-/, ":", str)
+       if (insmod_mport != 1) {
+               print "insmod ipt_multiport >&- 2>&-"
+               insmod_mport = 1
        }
+       if (type == "src") return " -m multiport --sports " str
+       else return " -m multiport --dports " str
 }
 
 function str2ipt(str) {