mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-12 19:33:03 +00:00
Extendable options can now reside also in [globa] section
SVN revision: 872
This commit is contained in:
parent
03b672db11
commit
e090919c64
@ -6,6 +6,9 @@
|
|||||||
Contents: Web server program for Electronic Logbook ELOG
|
Contents: Web server program for Electronic Logbook ELOG
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.324 2004/05/10 19:46:07 midas
|
||||||
|
Extendable options can now reside also in [globa] section
|
||||||
|
|
||||||
Revision 1.323 2004/05/10 09:34:27 midas
|
Revision 1.323 2004/05/10 09:34:27 midas
|
||||||
Fixed compiler warning
|
Fixed compiler warning
|
||||||
|
|
||||||
@ -2274,9 +2277,12 @@ char *find_param(char *buf, char *group, char *param)
|
|||||||
p++;
|
p++;
|
||||||
} while (p);
|
} while (p);
|
||||||
|
|
||||||
|
|
||||||
free(str);
|
free(str);
|
||||||
|
|
||||||
|
/* now search if in [global] section */
|
||||||
|
if (!strieq(group, "global"))
|
||||||
|
return find_param(buf, "global", param);
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user