diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-05-02 14:29:49 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-05-02 14:29:49 +0200 |
commit | 7c924aa664b5545616eab1473c93fa46c0cdef5b (patch) | |
tree | f006a17fa4aa017910c95e615ac752b763b37914 /svdrp.c | |
parent | a8478802a3f754a3d6f18b922bf4c78096c7737c (diff) | |
download | vdr-7c924aa664b5545616eab1473c93fa46c0cdef5b.tar.gz vdr-7c924aa664b5545616eab1473c93fa46c0cdef5b.tar.bz2 |
The SVDRP signon message now indicates the character encoding in use
Diffstat (limited to 'svdrp.c')
-rw-r--r-- | svdrp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,7 +10,7 @@ * and interact with the Video Disk Recorder - or write a full featured * graphical interface that sits on top of an SVDRP connection. * - * $Id: svdrp.c 1.109 2008/02/17 13:36:01 kls Exp $ + * $Id: svdrp.c 1.109.1.1 2008/05/02 14:29:16 kls Exp $ */ #include "svdrp.h" @@ -1606,7 +1606,7 @@ bool cSVDRP::Process(void) char buffer[BUFSIZ]; gethostname(buffer, sizeof(buffer)); time_t now = time(NULL); - Reply(220, "%s SVDRP VideoDiskRecorder %s; %s", buffer, VDRVERSION, *TimeToString(now)); + Reply(220, "%s SVDRP VideoDiskRecorder %s; %s; %s", buffer, VDRVERSION, *TimeToString(now), cCharSetConv::SystemCharacterTable() ? cCharSetConv::SystemCharacterTable() : "UTF-8"); } if (NewConnection) lastActivity = time(NULL); |