Fixed typo

SVN revision: 874
This commit is contained in:
Stefan Ritt 2004-05-11 09:16:03 +00:00
parent 5c21c053a1
commit 93e03fb085

View File

@ -6,6 +6,9 @@
Contents: Web server program for Electronic Logbook ELOG Contents: Web server program for Electronic Logbook ELOG
$Log$ $Log$
Revision 1.325 2004/05/11 09:16:03 midas
Fixed typo
Revision 1.324 2004/05/10 19:46:07 midas Revision 1.324 2004/05/10 19:46:07 midas
Extendable options can now reside also in [globa] section Extendable options can now reside also in [globa] section
@ -18470,7 +18473,7 @@ int main(int argc, char *argv[])
if (tcp_port_cl != 0) if (tcp_port_cl != 0)
tcp_port = tcp_port_cl; tcp_port = tcp_port_cl;
else { else {
if (getcfg("global", "Port1", str)) if (getcfg("global", "Port", str))
tcp_port = atoi(str); tcp_port = atoi(str);
} }