diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common/outbound.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/common/outbound.c b/src/common/outbound.c index c543997a..a0daaa9c 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -3102,15 +3102,15 @@ urlserv: *channel = co+1; else *channel = co; - - } - /* check for key - mirc style */ - co = strchr (co + 1, '?'); - if (co) - { - *co = 0; - co++; - *key = co; + + /* check for key - mirc style */ + co = strchr (co + 1, '?'); + if (co) + { + *co = 0; + co++; + *key = co; + } } return TRUE; |