diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-06-25 00:58:04 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-06-25 00:58:04 +0000 |
commit | 8139d3292d708a40be02e2061ce658d5c715c181 (patch) | |
tree | e407b0b5734a5c64bed491f888f62047cac8972b /net-im/meanwhile | |
parent | a1abb3f3f0664c2b6abea819a52485b6d05241d5 (diff) | |
download | ports-8139d3292d708a40be02e2061ce658d5c715c181.tar.gz ports-8139d3292d708a40be02e2061ce658d5c715c181.zip |
Fix build on 4.X.
Notes
Notes:
svn path=/head/; revision=112184
Diffstat (limited to 'net-im/meanwhile')
-rw-r--r-- | net-im/meanwhile/files/patch-src_srvc_im.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/net-im/meanwhile/files/patch-src_srvc_im.c b/net-im/meanwhile/files/patch-src_srvc_im.c new file mode 100644 index 000000000000..47d70264e8b6 --- /dev/null +++ b/net-im/meanwhile/files/patch-src_srvc_im.c @@ -0,0 +1,19 @@ +--- src/srvc_im.c.orig Thu Jun 24 20:53:09 2004 ++++ src/srvc_im.c Thu Jun 24 20:53:33 2004 +@@ -160,12 +160,14 @@ + struct mwSession *s; + struct mwChannelSet *cs; + unsigned int a, b; ++ char *buf; ++ gsize n; + + s = chan->session; + cs = s->channels; + +- char *buf = msg->addtl.data; +- gsize n = msg->addtl.len; ++ buf = msg->addtl.data; ++ n = msg->addtl.len; + + if( (msg->service != Service_IM) || + (msg->proto_type != Protocol_IM) || |