diff options
author | fenner <fenner@FreeBSD.org> | 1998-09-15 19:36:32 +0000 |
---|---|---|
committer | fenner <fenner@FreeBSD.org> | 1998-09-15 19:36:32 +0000 |
commit | 577b5b88b39bedc51620403e37d7e98cceb75351 (patch) | |
tree | 0337896435e9b66ef64657e2d16795d6742ade2e /contrib/tcpdump/llc.h | |
parent | bb4a1148ba09f0189b5e65fcea051398897f2e65 (diff) | |
parent | cfc42b58f229425374e675f86614cf26ffa356e4 (diff) | |
download | FreeBSD-src-577b5b88b39bedc51620403e37d7e98cceb75351.zip FreeBSD-src-577b5b88b39bedc51620403e37d7e98cceb75351.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r39297,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/tcpdump/llc.h')
-rw-r--r-- | contrib/tcpdump/llc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/tcpdump/llc.h b/contrib/tcpdump/llc.h index 89c10d5..36185a7 100644 --- a/contrib/tcpdump/llc.h +++ b/contrib/tcpdump/llc.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 1993, 1994 + * Copyright (c) 1993, 1994, 1997 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -18,7 +18,7 @@ * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * @(#) $Header: llc.h,v 1.4 94/06/14 20:11:46 leres Exp $ (LBL) + * @(#) $Header: llc.h,v 1.6 97/06/13 02:06:07 leres Exp $ (LBL) */ /* @@ -79,8 +79,8 @@ struct llc { #define LLC_RNR 0x0500 #define LLC_REJ 0x0900 -#define LLC_IS_NR(is) (((is) >> 9) & 0x7f) -#define LLC_I_NS(is) (((is) >> 1) & 0x7f) +#define LLC_IS_NR(is) (((is) >> 1) & 0x7f) +#define LLC_I_NS(is) (((is) >> 9) & 0x7f) #ifndef LLCSAP_NULL #define LLCSAP_NULL 0x00 |