diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-11 09:38:12 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-11 09:38:12 +0200 |
commit | 627916d32a363913f34b255b0a5dc0e89ffe9408 (patch) | |
tree | 48d643ba72e2238faa3493a79434891d111ef6c3 /tools.c | |
parent | cf15f276f9b7b97311003d2d1dc6dcdb444feb37 (diff) | |
download | vdr-627916d32a363913f34b255b0a5dc0e89ffe9408.tar.gz vdr-627916d32a363913f34b255b0a5dc0e89ffe9408.tar.bz2 |
New command line option -E
Diffstat (limited to 'tools.c')
-rw-r--r-- | tools.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: tools.c 1.35 2001/08/05 12:38:06 kls Exp $ + * $Id: tools.c 1.36 2001/08/11 08:52:27 kls Exp $ */ #define _GNU_SOURCE @@ -116,7 +116,10 @@ const char *AddDirectory(const char *DirName, const char *FileName) { static char *buf = NULL; delete buf; - asprintf(&buf, "%s/%s", DirName && *DirName ? DirName : ".", FileName); + if (*FileName != '/') + asprintf(&buf, "%s/%s", DirName && *DirName ? DirName : ".", FileName); + else + buf = strdup(FileName); return buf; } |