diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2009-01-30 21:12:16 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2009-01-30 21:12:16 +0000 |
commit | 3dce9b2db999932f1443da1335434e754d8cce9d (patch) | |
tree | 4b85dfc55ff72a0460ebf318353cdc6d253ef9ae /audio/mpg123/files/patch-aj | |
parent | Update to 2.2.2 (diff) |
- Update to 1.6.4
PR: ports/126537 (based on)
Submitted by: Vitaly Magerya <vmagerya@gmail.com>
Approved by: maintainer timeout (novel; 6 months)
Notes
Notes:
svn path=/head/; revision=227194
Diffstat (limited to 'audio/mpg123/files/patch-aj')
-rw-r--r-- | audio/mpg123/files/patch-aj | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/audio/mpg123/files/patch-aj b/audio/mpg123/files/patch-aj deleted file mode 100644 index d0d827ce404a..000000000000 --- a/audio/mpg123/files/patch-aj +++ /dev/null @@ -1,15 +0,0 @@ ---- mpg123.c.orig Tue Aug 21 19:48:17 2001 -+++ mpg123.c Tue Aug 21 19:49:02 2001 -@@ -307,9 +311,9 @@ - if (line[0]=='\0' || line[0]=='#') - continue; - if ((listnamedir) && (line[0]!='/') && (line[0]!='\\')){ -- strcpy (linetmp, listnamedir); -- strcat (linetmp, line); -- strcpy (line, linetmp); -+ strlcpy (linetmp, listnamedir, sizeof(linetmp)); -+ strlcat (linetmp, line, sizeof(linetmp)); -+ strlcpy (line, linetmp, sizeof(linetmp)); - } - return (line); - } |