diff options
author | olgeni <olgeni@FreeBSD.org> | 2001-04-20 23:25:31 +0800 |
---|---|---|
committer | olgeni <olgeni@FreeBSD.org> | 2001-04-20 23:25:31 +0800 |
commit | 495ca79348afc5241a39eea8d98c8ffcd012e8c7 (patch) | |
tree | 938b0e28dd3228a45f0b481a87a9b77b0952f7ad /audio/icecast/files | |
parent | 83ecebfcf710f01af4937a64dfc70c34c2255728 (diff) | |
download | freebsd-ports-graphics-495ca79348afc5241a39eea8d98c8ffcd012e8c7.tar.gz freebsd-ports-graphics-495ca79348afc5241a39eea8d98c8ffcd012e8c7.tar.zst freebsd-ports-graphics-495ca79348afc5241a39eea8d98c8ffcd012e8c7.zip |
Update port to version 1.3.10.
Change maintainer, with previous maintainer's permission.
PR: 26656
Submitted by: Zach Zurflu <zach@pabst.bendnet.com>
Diffstat (limited to 'audio/icecast/files')
-rw-r--r-- | audio/icecast/files/patch-aa | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/audio/icecast/files/patch-aa b/audio/icecast/files/patch-aa deleted file mode 100644 index bd3c746dfc7..00000000000 --- a/audio/icecast/files/patch-aa +++ /dev/null @@ -1,67 +0,0 @@ ---- src/http.c.orig Wed Jul 5 10:41:27 2000 -+++ src/http.c Sat Mar 10 23:03:45 2001 -@@ -710,7 +710,7 @@ - if (fd < 0) - sock_write (clicon->sock, "%s", out); - else -- fd_write (fd, out); -+ fd_write (fd, "%s", out); - - return 1; - } else { ---- src/utility.c.orig Wed Jul 5 12:52:40 2000 -+++ src/utility.c Sat Mar 10 23:01:37 2001 -@@ -162,7 +162,7 @@ - - if (!param) { - fd_write (info.statsfile, -- buf); -+ "%s", buf); - flags2string (admin, NULL); - fd_write (info.statsfile, "\n"); - } else { -@@ -198,7 +198,7 @@ - nice_time (get_time () - con->connect_time, timebuf), type); - - if (!param) -- fd_write (info.statsfile, buf); -+ fd_write (info.statsfile, "%s", buf); - else - sock_write (*sock, "%s", buf); - } -@@ -223,7 +223,7 @@ - source->num_clients); - - if (!param) -- fd_write (info.statsfile, buf); -+ fd_write (info.statsfile, "%s", buf); - else - sock_write (*sock, "%s", buf); - } -@@ -257,7 +257,7 @@ - } - - if (!param) -- fd_write (info.statsfile, buf); -+ fd_write (info.statsfile, "%s", buf); - else - sock_write (*sock, "%s", buf); - -@@ -267,7 +267,7 @@ - source->audiocast.mount, source->audiocast.description, source->audiocast.public); - - if (!param) -- fd_write (info.statsfile, buf); -+ fd_write (info.statsfile, "%s", buf); - else - sock_write (*sock, "%s", buf); - -@@ -330,7 +330,7 @@ - get_user_agent (con), client->type == listener_e ? "listener" : "relay"); - - if (!param) -- fd_write(info.statsfile, buf); -+ fd_write(info.statsfile, "%s", buf); - else - sock_write (*sock, "%s", buf); - } |