Use jump instead of goto in firewall
authorClinton Ebadi <clinton@unknownlamer.org>
Fri, 7 Dec 2012 20:19:48 +0000 (15:19 -0500)
committerClinton Ebadi <clinton@unknownlamer.org>
Fri, 7 Dec 2012 20:19:48 +0000 (15:19 -0500)
They do the same thing, but ferm renamed the keyword to reflect what
it does better.

src/plugins/firewall.sml

index 10e44de..9fd64f9 100644 (file)
@@ -117,7 +117,7 @@ fun generateFirewallConfig {server_rules, client_rules} =
                                   TextIO.output (outf, String.concat
                                                            ["mod owner uid-owner ",
                                                             Int.toString uid,
-                                                            " { goto user_",
+                                                            " { jump user_",
                                                             uname,
                                                             suffix,
                                                             "; DROP; }\n"]);