diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-11-05 11:21:38 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-11-05 11:21:38 +0100 |
commit | 9607fd33a061530b3e26e2ffae14e87548b016ba (patch) | |
tree | a5a4ef45553f9c87e4dba63be285823b819ce009 /svdrp.h | |
parent | 92af12daac8a33db8be0b33335bd79330ced9463 (diff) | |
download | vdr-9607fd33a061530b3e26e2ffae14e87548b016ba.tar.gz vdr-9607fd33a061530b3e26e2ffae14e87548b016ba.tar.bz2 |
cSVDRP now dynamically allocates its command buffer
Diffstat (limited to 'svdrp.h')
-rw-r--r-- | svdrp.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: svdrp.h 1.24 2005/10/09 11:11:59 kls Exp $ + * $Id: svdrp.h 1.25 2005/11/05 10:54:22 kls Exp $ */ #ifndef __SVDRP_H @@ -45,8 +45,9 @@ private: cFile file; cRecordings Recordings; cPUTEhandler *PUTEhandler; - uint numChars; - char cmdLine[MAXPARSEBUFFER]; + int numChars; + int length; + char *cmdLine; char *message; time_t lastActivity; void Close(bool Timeout = false); |