diff options
author | bms <bms@FreeBSD.org> | 2003-11-15 00:33:33 +0800 |
---|---|---|
committer | bms <bms@FreeBSD.org> | 2003-11-15 00:33:33 +0800 |
commit | 0152a779a13f106b856848171ff5b848540803a7 (patch) | |
tree | 810a4559741c33e653353e91e1fe39b6446a5d87 /mbone/mcl/files/patch-mcl_debug.cpp | |
parent | 5c3f987ddbb5957097e261f6461b04f472cc85f8 (diff) | |
download | freebsd-ports-gnome-0152a779a13f106b856848171ff5b848540803a7.tar.gz freebsd-ports-gnome-0152a779a13f106b856848171ff5b848540803a7.tar.zst freebsd-ports-gnome-0152a779a13f106b856848171ff5b848540803a7.zip |
Add mcl 2.99,
implementation of the ALC and NORM Reliable Multicast
Protocols.
PR: 58728
Submitted by: past@noc.ntua.gr
Diffstat (limited to 'mbone/mcl/files/patch-mcl_debug.cpp')
-rw-r--r-- | mbone/mcl/files/patch-mcl_debug.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mbone/mcl/files/patch-mcl_debug.cpp b/mbone/mcl/files/patch-mcl_debug.cpp new file mode 100644 index 000000000000..982503f326c9 --- /dev/null +++ b/mbone/mcl/files/patch-mcl_debug.cpp @@ -0,0 +1,11 @@ +--- src/common/mcl_debug.cpp.orig Tue Jul 22 19:37:39 2003 ++++ src/common/mcl_debug.cpp Wed Oct 15 17:55:58 2003 +@@ -73,7 +73,7 @@ + PRINT_OUT((mcl_stdout, "\tDUMP %d first bytes...\n\t", i * sizeof(int))) + for (ptr = (int*)buf; i > 0; i--, ptr++) { + /* convert to big endian format to be sure of byte order */ +- PRINT_OUT((mcl_stdout, "%08x ", htonl(*ptr))) ++ PRINT_OUT((mcl_stdout, "%08lx ", htonl(*ptr))) + if (++j == 8) { + j = 0; + PRINT_OUT((mcl_stdout, "\n\t")) |