diff options
author | Guy Harris <guy@alum.mit.edu> | 2016-08-07 15:21:15 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2016-08-07 15:21:15 -0700 |
commit | 93548574db5f433d74dfdb29ec037a6e9e355783 (patch) | |
tree | 4d2b98422a3c52e53290c6482e2fc6c6049f6874 /pcap-pf.c | |
parent | f192afba02e760d18b2a7b1984ea0b08508014e9 (diff) |
The FDDI padding value is now unsigned.
Diffstat (limited to 'pcap-pf.c')
-rw-r--r-- | pcap-pf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -107,7 +107,7 @@ pcap_read_pf(pcap_t *pc, int cnt, pcap_handler callback, u_char *user) #ifdef LBL_ALIGN struct enstamp stamp; #endif - register int pad; + register u_int pad; again: cc = pc->cc; |