summaryrefslogtreecommitdiff
path: root/mbone
diff options
context:
space:
mode:
authorBill Fenner <fenner@FreeBSD.org>2000-03-08 16:38:20 +0000
committerBill Fenner <fenner@FreeBSD.org>2000-03-08 16:38:20 +0000
commitf830a71bdfb77af554ba482f63df63509ccaf0c8 (patch)
treeba5d3bfe57700df732163b0dcaec2141a241c24f /mbone
parentAs well as www/lynx. (diff)
Use u_int32_t instead of u_int32. This makes this port compatible with
the new uclmmbase port (on its way).
Notes
Notes: svn path=/head/; revision=26661
Diffstat (limited to 'mbone')
-rw-r--r--mbone/rqm/files/patch-ab20
1 files changed, 20 insertions, 0 deletions
diff --git a/mbone/rqm/files/patch-ab b/mbone/rqm/files/patch-ab
new file mode 100644
index 000000000000..826bea2a47e6
--- /dev/null
+++ b/mbone/rqm/files/patch-ab
@@ -0,0 +1,20 @@
+--- main.c.orig Wed Mar 8 08:32:07 2000
++++ main.c Wed Mar 8 08:32:28 2000
+@@ -177,7 +177,7 @@
+ char *addr;
+ char *port;
+ char cmd[100];
+- u_int32 curr_rtp_time;
++ u_int32_t curr_rtp_time;
+ #ifdef WIN32
+ WSADATA WSAdata;
+ if (WSAStartup(WS_VERSION_TWO, &WSAdata) != 0 && WSAStartup(WS_VERSION_ONE, &WSAdata) != 0) {
+@@ -215,7 +215,7 @@
+ rtp_set_sdes(rtp_session, rtp_my_ssrc(rtp_session), RTCP_SDES_TOOL, VERSION, strlen(VERSION));
+
+ gettimeofday(&prev_t, NULL);
+- curr_rtp_time = (u_int32) lrand48();
++ curr_rtp_time = (u_int32_t) lrand48();
+ while (Tk_GetNumMainWindows() > 0) {
+ gettimeofday(&curr_t, NULL);
+ curr_rtp_time += (int) (tv_diff(curr_t, prev_t) * 8000);