Skip to content

Commit

Permalink
Indentation of if clause corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
Björn Gernert committed Jun 23, 2019
1 parent 8107c38 commit 8a9d099
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions radsecproxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -1091,8 +1091,8 @@ struct clsrvconf *choosesrvconf(struct list *srvconfs) {
server = (struct clsrvconf *)entry->data;
if (!server->servers)
return server;
if (server->servers->state == RSP_SERVER_STATE_FAILING)
continue;
if (server->servers->state == RSP_SERVER_STATE_FAILING)
continue;
if (!first)
first = server;
if (server->servers->state == RSP_SERVER_STATE_STARTUP || server->servers->state == RSP_SERVER_STATE_RECONNECTING)
Expand Down

0 comments on commit 8a9d099

Please sign in to comment.