summaryrefslogtreecommitdiff
path: root/svdrp.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-11-05 11:21:38 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2005-11-05 11:21:38 +0100
commit9607fd33a061530b3e26e2ffae14e87548b016ba (patch)
treea5a4ef45553f9c87e4dba63be285823b819ce009 /svdrp.h
parent92af12daac8a33db8be0b33335bd79330ced9463 (diff)
downloadvdr-9607fd33a061530b3e26e2ffae14e87548b016ba.tar.gz
vdr-9607fd33a061530b3e26e2ffae14e87548b016ba.tar.bz2
cSVDRP now dynamically allocates its command buffer
Diffstat (limited to 'svdrp.h')
-rw-r--r--svdrp.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/svdrp.h b/svdrp.h
index 9275bf27..2e182f21 100644
--- a/svdrp.h
+++ b/svdrp.h
@@ -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);