ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/server.c
(Generate patch)

Comparing ircd-hybrid-8/src/s_serv.c (file contents):
Revision 1518 by michael, Sun Aug 26 09:11:17 2012 UTC vs.
Revision 1519 by michael, Wed Sep 5 12:02:04 2012 UTC

# Line 436 | Line 436 | check_server(const char *name, struct Cl
436  
437    server_aconf = map_to_conf(server_conf);
438  
439  if (!IsConfTopicBurst(server_aconf))
440    ClearCap(client_p, CAP_TBURST);
441
439    if (aconf != NULL)
440    {
441      struct sockaddr_in *v4;
# Line 641 | Line 638 | sendnick_TS(struct Client *client_p, str
638                   target_p->servptr->name, target_p->info);
639    }
640  
641 <  if (IsConfAwayBurst((struct AccessItem *)map_to_conf(client_p->localClient->confs.head->data)))
642 <    if (target_p->away[0])
643 <      sendto_one(client_p, ":%s AWAY :%s", ID_or_name(target_p, client_p),
647 <                 target_p->away);
641 >  if (target_p->away[0])
642 >    sendto_one(client_p, ":%s AWAY :%s", ID_or_name(target_p, client_p),
643 >               target_p->away);
644  
645   }
646  
# Line 767 | Line 763 | server_estab(struct Client *client_p)
763       * - Dianora
764       */
765  
766 <    send_capabilities(client_p, aconf,
771 <      (IsConfTopicBurst(aconf) ? CAP_TBURST : 0));
766 >    send_capabilities(client_p, aconf, 0);
767  
768      sendto_one(client_p, "SERVER %s 1 :%s%s",
769                 me.name, ConfigServerHide.hidden ? "(H) " : "", me.info);
# Line 1320 | Line 1315 | finish_ssl_server_handshake(struct Clien
1315      sendto_one(client_p, "PASS %s TS %d %s",
1316                 aconf->spasswd, TS_CURRENT, me.id);
1317  
1318 <  send_capabilities(client_p, aconf,
1324 <                   (IsConfTopicBurst(aconf) ? CAP_TBURST : 0));
1318 >  send_capabilities(client_p, aconf, 0);
1319  
1320    sendto_one(client_p, "SERVER %s 1 :%s%s",
1321               me.name, ConfigServerHide.hidden ? "(H) " : "",
# Line 1482 | Line 1476 | serv_connect_callback(fde_t *fd, int sta
1476      sendto_one(client_p, "PASS %s TS %d %s",
1477                 aconf->spasswd, TS_CURRENT, me.id);
1478  
1479 <  send_capabilities(client_p, aconf,
1486 <                   (IsConfTopicBurst(aconf) ? CAP_TBURST : 0));
1479 >  send_capabilities(client_p, aconf, 0);
1480  
1481    sendto_one(client_p, "SERVER %s 1 :%s%s",
1482               me.name, ConfigServerHide.hidden ? "(H) " : "",

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)