Changes in ipc.c [4c225f0:e67e513]
Legend:
- Unmodified
- Added
- Removed
-
ipc.c
r4c225f0 re67e513 356 356 irc_switch_fd( irc, ipc_child_recv_fd ); 357 357 irc_sync( irc ); 358 irc_ usermsg( irc, "You've successfully taken over your old session" );358 irc_rootmsg( irc, "You've successfully taken over your old session" ); 359 359 ipc_child_recv_fd = -1; 360 360 … … 374 374 { 375 375 /* Master->New connection */ 376 irc_ usermsg( irc, "Could not take over old session" );376 irc_rootmsg( irc, "Could not take over old session" ); 377 377 } 378 378 } … … 412 412 /* Drop credentials, we'll shut down soon and shouldn't overwrite 413 413 any settings. */ 414 irc_ usermsg( irc, "Trying to take over existing session" );414 irc_rootmsg( irc, "Trying to take over existing session" ); 415 415 416 416 irc_desync( irc ); … … 909 909 int serversock; 910 910 911 if (!IPCSOCKET || !*IPCSOCKET)912 return 1;913 914 911 /* Clean up old socket files that were hanging around.. */ 915 912 if (unlink(IPCSOCKET) == -1 && errno != ENOENT) {
Note: See TracChangeset
for help on using the changeset viewer.