aboutsummaryrefslogtreecommitdiff
path: root/audio/scrobbler
diff options
context:
space:
mode:
authorRoman Bogorodskiy <novel@FreeBSD.org>2005-11-26 17:20:40 +0000
committerRoman Bogorodskiy <novel@FreeBSD.org>2005-11-26 17:20:40 +0000
commita00535f54244ab290fd4f9655bec0ccee8a72c38 (patch)
treefe751b4cff8c1b6b95a0668ece8b00435120c0f1 /audio/scrobbler
parent8bac9c8a33d1f4b6300ce27a1bbf42399a365529 (diff)
downloadports-a00535f54244ab290fd4f9655bec0ccee8a72c38.tar.gz
ports-a00535f54244ab290fd4f9655bec0ccee8a72c38.zip
Notes
Diffstat (limited to 'audio/scrobbler')
-rw-r--r--audio/scrobbler/files/patch-scrobbler.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/audio/scrobbler/files/patch-scrobbler.c b/audio/scrobbler/files/patch-scrobbler.c
new file mode 100644
index 000000000000..07148bac36c3
--- /dev/null
+++ b/audio/scrobbler/files/patch-scrobbler.c
@@ -0,0 +1,15 @@
+--- scrobbler.c.orig Mon Feb 21 03:45:05 2005
++++ scrobbler.c Sat Nov 26 20:14:10 2005
+@@ -382,9 +382,9 @@
+
+ static gchar *sc_itemtag(char c, int n, char *str)
+ {
+- static char buf[256];
+- snprintf(buf, 256, "&%c[%d]=%s", c, n, str);
+- return buf;
++ static char buf[1024];
++ snprintf(buf, 1024, "&%c[%d]=%s", c, n, str);
++ return buf;
+ }
+
+ #define cfa(f, l, n, v) \