diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-12-06 23:09:57 +0000 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-12-06 23:09:57 +0000 |
commit | ebdb41a07161284858ecff47399a0ca2c61c48ed (patch) | |
tree | f8c4a796336a669b1fd41154c443388d2d6977d8 /net/kdenetwork11 | |
parent | bb8b95d729931567140cefadd75f0542f40b714d (diff) | |
download | FreeBSD-ports-ebdb41a07161284858ecff47399a0ca2c61c48ed.zip FreeBSD-ports-ebdb41a07161284858ecff47399a0ca2c61c48ed.tar.gz |
Make this compile on -current
Diffstat (limited to 'net/kdenetwork11')
-rw-r--r-- | net/kdenetwork11/files/patch-ab | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/net/kdenetwork11/files/patch-ab b/net/kdenetwork11/files/patch-ab new file mode 100644 index 0000000..161a5c9 --- /dev/null +++ b/net/kdenetwork11/files/patch-ab @@ -0,0 +1,14 @@ +--- ksirc/puke/controller.cpp.orig Mon Jun 21 16:46:39 1999 ++++ ksirc/puke/controller.cpp Mon Dec 6 14:58:10 1999 +@@ -220,9 +220,9 @@ + #endif /* DEBUG */ + + struct iovec iov[2]; +- iov[0].iov_base = (void *) message; ++ iov[0].iov_base = message->cArg; + iov[0].iov_len = 5*sizeof(int); +- iov[1].iov_base = (void *) message->cArg; ++ iov[1].iov_base = message->cArg; + iov[1].iov_len = message->iTextSize; + bytes = writev(fd, iov, 2); + } |