mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-08 17:13:56 +00:00
Version 2.0.1
SVN revision: 138
This commit is contained in:
parent
2d38254389
commit
905c76f436
@ -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
|
Version 2.0.0, released June 17th, 2002
|
||||||
=======================================
|
=======================================
|
||||||
|
|
||||||
|
|||||||
9
elogd.c
9
elogd.c
@ -6,6 +6,9 @@
|
|||||||
Contents: Web server program for Electronic Logbook ELOG
|
Contents: Web server program for Electronic Logbook ELOG
|
||||||
|
|
||||||
$Log$
|
$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
|
Revision 2.24 2002/06/18 07:48:33 midas
|
||||||
Fixed bug with previous submission
|
Fixed bug with previous submission
|
||||||
|
|
||||||
@ -176,7 +179,7 @@
|
|||||||
\********************************************************************/
|
\********************************************************************/
|
||||||
|
|
||||||
/* Version of ELOG */
|
/* Version of ELOG */
|
||||||
#define VERSION "2.0.0"
|
#define VERSION "2.0.1"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
@ -9250,6 +9253,10 @@ usage:
|
|||||||
n++;
|
n++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* get port from configuration file */
|
||||||
|
if (getcfg("global", "Port", str))
|
||||||
|
tcp_port = atoi(str);
|
||||||
|
|
||||||
server_loop(tcp_port, daemon);
|
server_loop(tcp_port, daemon);
|
||||||
|
|
||||||
#ifdef OS_UNIX
|
#ifdef OS_UNIX
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user