diff options
author | Ugen J.S. Antsilevich <ugen@FreeBSD.org> | 1995-02-14 09:34:04 +0000 |
---|---|---|
committer | Ugen J.S. Antsilevich <ugen@FreeBSD.org> | 1995-02-14 09:34:04 +0000 |
commit | dbec390e8acba23de627ce4fca88811bc3335ff6 (patch) | |
tree | 759d4fcfc92408430afbcdc5e097e988fa9a57cc /sbin | |
parent | 8f6466e8470ed13ccfdb28d9f2a920cfc48686d0 (diff) | |
download | src-dbec390e8acba23de627ce4fca88811bc3335ff6.tar.gz src-dbec390e8acba23de627ce4fca88811bc3335ff6.zip |
Ppl asked to make ipfw smarter..ok..
here it is..
Notes
Notes:
svn path=/head/; revision=6372
Diffstat (limited to 'sbin')
-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 61744fd25648..58f07ae789af 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 */ |