diff options
| author | Florian Westphal <fw@strlen.de> | 2005-09-02 17:01:23 +0000 |
|---|---|---|
| committer | Florian Westphal <fw@strlen.de> | 2005-09-02 17:01:23 +0000 |
| commit | cae9a3aee5d0a4c6464ee50bea5d2d8d3eed837a (patch) | |
| tree | 215146bcd9a4675de93ed5ff2f8f79da78dd3287 /src | |
| parent | e708790566cd2874c8332cde7779ff6eef5f9c3c (diff) | |
| download | ngircd-cae9a3aee5d0a4c6464ee50bea5d2d8d3eed837a.tar.gz ngircd-cae9a3aee5d0a4c6464ee50bea5d2d8d3eed837a.zip | |
small formatting change
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/conn.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 5ac1af46..13dbadec 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -17,7 +17,7 @@ #include "portab.h" #include "io.h" -static char UNUSED id[] = "$Id: conn.c,v 1.177 2005/09/02 13:28:30 alex Exp $"; +static char UNUSED id[] = "$Id: conn.c,v 1.178 2005/09/02 17:01:23 fw Exp $"; #include "imp.h" #include <assert.h> @@ -1354,10 +1354,10 @@ Check_Servers( void ) /* Is there already a connection in this group? */ if( Conf_Server[i].group > NONE ) { - for( n = 0; n < MAX_SERVERS; n++ ) { - if( n == i ) continue; - if(( Conf_Server[n].conn_id > NONE ) && - ( Conf_Server[n].group == Conf_Server[i].group )) + for (n = 0; n < MAX_SERVERS; n++) { + if (n == i) continue; + if ((Conf_Server[n].conn_id > NONE) && + (Conf_Server[n].group == Conf_Server[i].group)) break; } if (n < MAX_SERVERS) continue; |