diff options
author | hubertf <hubertf@pkgsrc.org> | 1999-06-13 23:14:08 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1999-06-13 23:14:08 +0000 |
commit | ffd94ae882475c0025bb13b72d9846b9adb47e79 (patch) | |
tree | 518c3001b9cbe532c3a7c0808f06bfdc6f175c2a /audio | |
parent | f2f043b968491f336db1ed293e5601512c72cdd9 (diff) | |
download | pkgsrc-ffd94ae882475c0025bb13b72d9846b9adb47e79.tar.gz |
Fix ipc handling, thanks to Simon Burge <simonb@NetBSD.ORG>.
(I'm still not sure this isn't a bug in NetBSD, though...)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/gqmpeg/patches/patch-ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/gqmpeg/patches/patch-ac b/audio/gqmpeg/patches/patch-ac new file mode 100644 index 00000000000..a4fb5d25584 --- /dev/null +++ b/audio/gqmpeg/patches/patch-ac @@ -0,0 +1,11 @@ +--- ipc.c.orig Mon Jun 14 00:47:56 1999 ++++ ipc.c Mon Jun 14 00:49:37 1999 +@@ -219,6 +219,8 @@ + printf("unknown ipc command: `%s'\n", i_buf); + } + } ++ if (feof(ipc_file_id) != 0) ++ rewind (ipc_file_id); + return TRUE; + } + |