* If you paid for this software, someone is ripping you off.
authorArt Cancro <ajc@citadel.org>
Thu, 20 Dec 2001 04:54:27 +0000 (04:54 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 20 Dec 2001 04:54:27 +0000 (04:54 +0000)
citadel/ChangeLog
citadel/server_main.c

index 142e9498ac8ef72ac783a2367cebb5a487b32dfa..f06b487f2357d07d4cf52d7cb9a587db58518bb7 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 590.15  2001/12/20 04:54:26  ajc
+ * If you paid for this software, someone is ripping you off.
+
  Revision 590.14  2001/12/18 08:24:56  nbryant
  more lovely configure tweaks (include paths for db)
 
@@ -2992,4 +2995,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import 
-
index 8cd53e9b7f075a256d7ed0937f4900e3670735b3..d5a6a8eba5f27f503931b4be8c4071921d0449a1 100644 (file)
@@ -128,12 +128,13 @@ int main(int argc, char **argv)
 
        /* Tell 'em who's in da house */
        lprintf(1,
-"\nMultithreaded message server for Citadel/UX\n"
+"\n"
+"Citadel/UX messaging server engine v%d.%02d\n"
 "Copyright (C) 1987-2001 by the Citadel/UX development team.\n"
-"Citadel/UX is free software, covered by the GNU General Public License, and\n"
-"you are welcome to change it and/or distribute copies of it under certain\n"
-"conditions.  There is absolutely no warranty for this software.  Please\n"
-"read the 'COPYING.txt' file for details.\n\n");
+"Citadel/UX is released under the terms of the GNU General Public License.\n"
+"If you paid for this software, someone is ripping you off.\n\n",
+       (REV_LEVEL/100),
+       (REV_LEVEL%100));
 
        /* Initialize... */
        init_sysdep();