summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b>2005-02-12 10:04:58 +0000
committerLarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b>2005-02-12 10:04:58 +0000
commita5bdba18cb2c8f760c99d012267bd9278ce74e09 (patch)
treef929db8efe604d9b837b0cffde273bb79a23452c
parent0497728d48f4f1adf2d84ed46f289669dcd12676 (diff)
downloadvdr-plugin-muggle-a5bdba18cb2c8f760c99d012267bd9278ce74e09.tar.gz
vdr-plugin-muggle-a5bdba18cb2c8f760c99d012267bd9278ce74e09.tar.bz2
corrected bug in GdFindFile
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@481 e10066b5-e1e2-0310-b819-94efdf66514b
-rw-r--r--mg_db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mg_db.c b/mg_db.c
index 99fc27b..8249647 100644
--- a/mg_db.c
+++ b/mg_db.c
@@ -658,7 +658,7 @@ GdFindFile( const char* tld, string mp3file )
{
char *s;
if( (s = mg_readline(p) ) != 0)
- result = string(tld) + string(s);
+ result = string(s);
pclose(p);
}