summaryrefslogtreecommitdiff
path: root/mbone
diff options
context:
space:
mode:
authorBill Fenner <fenner@FreeBSD.org>1996-11-12 22:02:54 +0000
committerBill Fenner <fenner@FreeBSD.org>1996-11-12 22:02:54 +0000
commit91f6b0a69aa81f0e522942cdcfc383cf8c66e2c8 (patch)
treef1307cc67f65dbd54bcae5c8482d75897bcdefd4 /mbone
parentDon't use variable substitution in PKGNAME (diff)
Fix endian-ness problem in bitfield.
Pointed-out-by: Denis DeLaRoca <CSP1DWD@mvs.oac.ucla.edu>
Notes
Notes: svn path=/head/; revision=4428
Diffstat (limited to 'mbone')
-rw-r--r--mbone/sdr/files/patch-ac27
1 files changed, 27 insertions, 0 deletions
diff --git a/mbone/sdr/files/patch-ac b/mbone/sdr/files/patch-ac
new file mode 100644
index 000000000000..d7a08664be82
--- /dev/null
+++ b/mbone/sdr/files/patch-ac
@@ -0,0 +1,27 @@
+Index: src/sdr.h
+===================================================================
+RCS file: /tilde/fenner/conf/sdr/cvs/sdr/src/sdr.h,v
+retrieving revision 1.7
+diff -c -r1.7 sdr.h
+*** 1.7 1996/11/12 17:33:22
+--- sdr.h 1996/11/12 17:39:10
+***************
+*** 147,156 ****
+--- 147,163 ----
+ };
+
+ struct sap_header {
++ #if BYTE_ORDER == BIG_ENDIAN
+ u_int version:3;
+ u_int type:3;
+ u_int enc:1;
+ u_int compress:1;
++ #else
++ u_int compress:1;
++ u_int enc:1;
++ u_int type:3;
++ u_int version:3;
++ #endif
+ u_int authlen:8;
+ u_int msgid:16;
+ u_int src;