Implemented FHS support; fixed handling config directory if only -v is given

This commit is contained in:
Klaus Schmidinger
2012-09-01 14:03:45 +02:00
parent d3b3c43e8f
commit 13edfc1382
13 changed files with 204 additions and 57 deletions

View File

@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: videodir.c 2.2 2012/06/10 13:45:21 kls Exp $
* $Id: videodir.c 2.3 2012/09/01 10:57:44 kls Exp $
*/
#include "videodir.h"
@@ -21,6 +21,11 @@
const char *VideoDirectory = VIDEODIR;
void SetVideoDirectory(const char *Directory)
{
VideoDirectory = strdup(Directory);
}
class cVideoDirectory {
private:
char *name, *stored, *adjusted;