Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 17903

Summary: Kismet dumps are unreadable due to bad PCAP_MAGIC
Product: Gentoo Linux Reporter: Robert Czechowski <czechowski_r>
Component: Current packagesAssignee: PPC Porters <ppc>
Status: RESOLVED INVALID    
Severity: normal    
Priority: High    
Version: unspecified   
Hardware: PPC   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Robert Czechowski 2003-03-20 20:40:19 UTC
#ifndef WORDS_BIGENDIAN 
// Little endian magic 
#define PCAP_MAGIC          0xa1b2c3d4 
#else 
// Big endian magic 
#define PCAP_MAGIC          0xd4c3b2a1 
#endif 
 
Shouldn't this be switched in the wtaplocaldump.h 

Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 Pieter Van den Abeele (RETIRED) gentoo-dev 2003-07-15 03:10:37 UTC
nope, this is correct:

LITTLE endian = 0xa1b2c3d4
BIG    endian = 0xd4c3b2a1

and that is exactly what the code you cc'ed says.

Can you please verify the issue you described still exists?