From 905c76f4367e568a8fc32f49f5784e7c09f4d622 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Tue, 18 Jun 2002 13:16:01 +0000 Subject: [PATCH] Version 2.0.1 SVN revision: 138 --- doc/CHANGELOG.TXT | 7 +++++++ elogd.c | 9 ++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/doc/CHANGELOG.TXT b/doc/CHANGELOG.TXT index 67aaad0a..3182c98c 100755 --- a/doc/CHANGELOG.TXT +++ b/doc/CHANGELOG.TXT @@ -1,3 +1,10 @@ +Version 2.0.1, released June 18th, 2002 +======================================= + +- Removed "width=50%" from logbook selection page +- Added "port" option to config file + + Version 2.0.0, released June 17th, 2002 ======================================= diff --git a/elogd.c b/elogd.c index 095640a9..67ad96d3 100755 --- a/elogd.c +++ b/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 2.25 2002/06/18 13:15:29 midas + Version 2.0.1 + Revision 2.24 2002/06/18 07:48:33 midas Fixed bug with previous submission @@ -176,7 +179,7 @@ \********************************************************************/ /* Version of ELOG */ -#define VERSION "2.0.0" +#define VERSION "2.0.1" #include #include @@ -9250,6 +9253,10 @@ usage: n++; } + /* get port from configuration file */ + if (getcfg("global", "Port", str)) + tcp_port = atoi(str); + server_loop(tcp_port, daemon); #ifdef OS_UNIX