mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-10 18:23:28 +00:00
Fixed problem with top groups and password files
SVN revision: 1238
This commit is contained in:
parent
d7336cb95a
commit
6ca1751824
14
src/elogd.c
14
src/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 1.581 2005/03/03 16:03:39 ritt
|
||||||
|
Fixed problem with top groups and password files
|
||||||
|
|
||||||
Revision 1.580 2005/03/03 15:35:00 ritt
|
Revision 1.580 2005/03/03 15:35:00 ritt
|
||||||
Removed debugging statements
|
Removed debugging statements
|
||||||
|
|
||||||
@ -18525,7 +18528,7 @@ int get_user_line(LOGBOOK *lbs, char *user, char *password, char *full_name,
|
|||||||
char *email, BOOL email_notify[1000])
|
char *email, BOOL email_notify[1000])
|
||||||
{
|
{
|
||||||
int i, j;
|
int i, j;
|
||||||
char str[256], global[256];
|
char str[256], global[256], orig_topgroup[256];
|
||||||
PMXML_NODE user_node, node, subnode;
|
PMXML_NODE user_node, node, subnode;
|
||||||
|
|
||||||
if (password)
|
if (password)
|
||||||
@ -18539,9 +18542,15 @@ int get_user_line(LOGBOOK *lbs, char *user, char *password, char *full_name,
|
|||||||
|
|
||||||
/* if global password file is requested, search for first
|
/* if global password file is requested, search for first
|
||||||
logbook with same password file than global section */
|
logbook with same password file than global section */
|
||||||
|
orig_topgroup[0] = 0;
|
||||||
if (lbs == NULL) {
|
if (lbs == NULL) {
|
||||||
getcfg("global", "Password file", global, sizeof(global));
|
getcfg("global", "Password file", global, sizeof(global));
|
||||||
|
if (*getcfg_topgroup())
|
||||||
|
strcpy(orig_topgroup, getcfg_topgroup());
|
||||||
|
|
||||||
for (i=0 ; lb_list[i].name[0] ; i++) {
|
for (i=0 ; lb_list[i].name[0] ; i++) {
|
||||||
|
if (lb_list[i].top_group[0])
|
||||||
|
setcfg_topgroup(lb_list[i].top_group);
|
||||||
getcfg(lb_list[i].name, "Password file", str, sizeof(str));
|
getcfg(lb_list[i].name, "Password file", str, sizeof(str));
|
||||||
if (strieq(str, global)) {
|
if (strieq(str, global)) {
|
||||||
lbs = lb_list+i;
|
lbs = lb_list+i;
|
||||||
@ -18551,6 +18560,9 @@ int get_user_line(LOGBOOK *lbs, char *user, char *password, char *full_name,
|
|||||||
|
|
||||||
if (!lb_list[i].name[0])
|
if (!lb_list[i].name[0])
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
|
if (orig_topgroup[0])
|
||||||
|
setcfg_topgroup(orig_topgroup);
|
||||||
}
|
}
|
||||||
|
|
||||||
getcfg(lbs->name, "Password file", str, sizeof(str));
|
getcfg(lbs->name, "Password file", str, sizeof(str));
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user