diff options
author | ugen <ugen@FreeBSD.org> | 1995-02-14 09:34:04 +0000 |
---|---|---|
committer | ugen <ugen@FreeBSD.org> | 1995-02-14 09:34:04 +0000 |
commit | 13a6aaa8e09495c037f54d4678956eb2eec93525 (patch) | |
tree | 759d4fcfc92408430afbcdc5e097e988fa9a57cc /sbin/ipfw | |
parent | c5bdd3a7299c685e2ea4ffd3f2f006aecb65387b (diff) | |
download | FreeBSD-src-13a6aaa8e09495c037f54d4678956eb2eec93525.zip FreeBSD-src-13a6aaa8e09495c037f54d4678956eb2eec93525.tar.gz |
Ppl asked to make ipfw smarter..ok..
here it is..
Diffstat (limited to 'sbin/ipfw')
-rw-r--r-- | sbin/ipfw/ipfw.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/ipfw/ipfw.c b/sbin/ipfw/ipfw.c index 61744fd..58f07ae 100644 --- a/sbin/ipfw/ipfw.c +++ b/sbin/ipfw/ipfw.c @@ -48,9 +48,9 @@ u_short flags=0; /* New entry flags */ #define AC 2 /* Accounting action */ -#define S_SEP1 "f" /* of "from" */ -#define S_SEP2 "t" /* of "to" */ -#define S_SEP3 "v" /* of "via" */ +#define S_SEP1 "fr" /* of "from" */ +#define S_SEP2 "to" /* of "to" */ +#define S_SEP3 "vi" /* of "via" */ #define P_AC "a" /* of "accept" for policy action */ #define P_DE "d" /* of "deny" for policy action */ |