diff options
author | brian <brian@FreeBSD.org> | 1999-12-27 11:54:57 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1999-12-27 11:54:57 +0000 |
commit | 5269dd341cd137829f110a77ccd91d1b7185549c (patch) | |
tree | c01a89bdfbb0afa81a443e52b0296428ffd91430 /usr.sbin/ppp/ip.c | |
parent | 8d3683f53b3d5744a2026aa9b81196dd6a4a4a1b (diff) | |
download | FreeBSD-src-5269dd341cd137829f110a77ccd91d1b7185549c.zip FreeBSD-src-5269dd341cd137829f110a77ccd91d1b7185549c.tar.gz |
Add a bunch of `const's and fix a typo.
Submitted by: Rich Neswold <rneswold@MCS.Net>
Diffstat (limited to 'usr.sbin/ppp/ip.c')
-rw-r--r-- | usr.sbin/ppp/ip.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/ppp/ip.c b/usr.sbin/ppp/ip.c index 7931033..efd096d 100644 --- a/usr.sbin/ppp/ip.c +++ b/usr.sbin/ppp/ip.c @@ -68,7 +68,9 @@ #include "tun.h" #include "ip.h" -static const char *TcpFlags[] = { "FIN", "SYN", "RST", "PSH", "ACK", "URG" }; +static const char * const TcpFlags[] = { + "FIN", "SYN", "RST", "PSH", "ACK", "URG" +}; static __inline int PortMatch(int op, u_short pport, u_short rport) |