Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 295545 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-5 / +2 lines)
Line  Link Here
0
-- src/auth.c
0
++ src/auth.c
Lines 1172-1180 Link Here
1172
1172
1173
  /* Next, search for an anonymous entry. */
1173
  /* Next, search for an anonymous entry. */
1174
1174
1175
  if (!c) {
1175
  if (c == NULL) {
1176
    c = find_config(main_server->conf, CONF_ANON, NULL, FALSE);
1176
    c = find_config(main_server->conf, CONF_ANON, NULL, FALSE);
1177
    anon_c = c;
1178
1177
1179
  } else {
1178
  } else {
1180
    find_config_set_top(c);
1179
    find_config_set_top(c);
Lines 1199-1206 Link Here
1199
 
1198
 
1200
    } while ((c = find_config_next(c, c->next, CONF_ANON, NULL,
1199
    } while ((c = find_config_next(c, c->next, CONF_ANON, NULL,
1201
      FALSE)) != NULL);
1200
      FALSE)) != NULL);
1202
1203
    c = anon_c;
1204
  }
1201
  }
1205
1202
1206
  if (!is_alias) {
1203
  if (!is_alias) {

Return to bug 295545