Changeset 827 for branches


Ignore:
Timestamp:
11/20/08 18:06:33 (4 years ago)
Author:
wd
Message:

Fix a minor bug in the text when you /connect the server you're on.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ithildin-1.1/modules/ircd/commands/connect.c

    r579 r827  
    6262    if ((sp = find_server(argv[1])) != NULL) { 
    6363        sendto_one(cli, "NOTICE", ":Connect: server %s already exists from %s", 
    64                 sp->name, (MYSERVER(sp) ? ircd.me->name : sp->parent->name)); 
     64                sp->name, 
     65                (MYSERVER(sp) || sp == ircd.me ? ircd.me->name : sp->parent->name)); 
    6566        return COMMAND_WEIGHT_NONE; /* server already on the network, foo. */ 
    6667    } 
Note: See TracChangeset for help on using the changeset viewer.