Changeset 5424c76 for irc_commands.c
- Timestamp:
- 2006-01-19T17:52:19Z (19 years ago)
- Branches:
- master
- Children:
- b8c2ace
- Parents:
- bd9b00f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_commands.c
rbd9b00f r5424c76 580 580 static int irc_cmd_rehash( irc_t *irc, char **cmd ) 581 581 { 582 ipc_to_master( cmd ); 582 if( global.conf->runmode == RUNMODE_INETD ) 583 ipc_master_cmd_rehash( NULL, NULL ); 584 else 585 ipc_to_master( cmd ); 583 586 584 587 irc_reply( irc, 382, "%s :Rehashing", CONF_FILE ); … … 656 659 657 660 if( irc_commands[i].flags & IRC_CMD_TO_MASTER ) 661 /* IPC doesn't make sense in inetd mode, 662 but the function will catch that. */ 658 663 ipc_to_master( cmd ); 659 664 else
Note: See TracChangeset
for help on using the changeset viewer.