Index: trunk/FACT++/src/chatserv.cc
===================================================================
--- trunk/FACT++/src/chatserv.cc	(revision 10629)
+++ trunk/FACT++/src/chatserv.cc	(revision 10630)
@@ -37,58 +37,19 @@
 {
     cout <<
-        "The ftmctrl controls the FTM (FACT Trigger Master) board.\n"
+        "The chatserv is a Dim-based chat server.\n"
         "\n"
-        "The default is that the program is started without user intercation. "
-        "All actions are supposed to arrive as DimCommands. Using the -c "
-        "option, a local shell can be initialized. With h or help a short "
-        "help message about the usuage can be brought to the screen.\n"
+        "It is a non-interactive program which acts as a relay of messages "
+        "sent via a Dim command CHAT/MSG and which are redirected to the "
+        "logging service CHAT/MESSAGE.\n"
         "\n"
-        "Usage: ftmctrl [-c type] [OPTIONS]\n"
-        "  or:  ftmctrl [OPTIONS]\n"
-        "\n"
-        "Options:\n"
-        "The following describes the available commandline options. "
-        "For further details on how command line option are parsed "
-        "and in which order which configuration sources are accessed "
-        "please refer to the class reference of the Configuration class.";
+        "Usage: chatserv [OPTIONS]\n"
+        "  or:  chatserv [OPTIONS]\n"
     cout << endl;
-
 }
 
 void PrintHelp()
 {
-}
-
-/*
- The first line of the --version information is assumed to be in one
- of the following formats:
-
-   <version>
-   <program> <version>
-   {GNU,Free} <program> <version>
-   <program> ({GNU,Free} <package>) <version>
-   <program> - {GNU,Free} <package> <version>
-
- and separated from any copyright/author details by a blank line.
-
- Handle multi-line bug reporting sections of the form:
-
-   Report <program> bugs to <addr>
-   GNU <package> home page: <url>
-   ...
-*/
-void PrintVersion(const char *name)
-{
-    cout <<
-        name << " - FACT++ 1.0 - Trigger master control\n"
-        "\n"
-        "Written by Thomas Bretz <thomas.bretz@epfl.ch> et al.\n"
-        "\n"
-        "Report bugs to Thomas Bretz <thomas.bretz@epfl.ch>\n"
-        "FACT++ home page: http://www.xxx.com\n"
-        "\n"
-        "Copyright (C) 2011 by the FACT Collaboration.\n"
-        "This is free software; see the source for copying conditions.\n"
-        << endl;
+    /* Additional help text which is printed after the configuration
+     options goes here */
 }
 
@@ -142,5 +103,5 @@
     if (conf.HasVersion())
     {
-        PrintVersion(argv[0]);
+        FACT::PrintVersion(argv[0]);
         return -1;
     }
