Changeset 736 for branches/ithildin-1.1


Ignore:
Timestamp:
05/30/06 04:52:22 (6 years ago)
Author:
wd
Message:

Small updates to info and motd, fixed a typo in packet.c

Location:
branches/ithildin-1.1/modules
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/ithildin-1.1/modules/dns/packet.c

    r735 r736  
    8686                /* Trying alternate code here... */ 
    8787                for (i = 15;i >= 0;i--) 
    88                     sprintf(s + ((15 - i) * 4), "%x.%x.". 
     88                    sprintf(s + ((15 - i) * 4), "%x.%x.", 
    8989                            s2[i] & 0xf, (s2[i] >> 4) & 0xf); 
    9090                strcat(s, "ip6.arpa"); 
  • branches/ithildin-1.1/modules/ircd/commands/info.c

    r579 r736  
    3434    CMSG("371", ":%s"); 
    3535#define RPL_INFOSTART 373 
    36     CMSG("373", ":Server INFO"); 
     36    CMSG("373", ":%s Server INFO"); 
    3737#define RPL_ENDOFINFO 374 
    3838    CMSG("374", ":End of /INFO list."); 
     
    5959    int i, lines = 2; 
    6060 
    61     sendto_one(cli, RPL_FMT(cli, RPL_INFOSTART)); 
     61    sendto_one(cli, RPL_FMT(cli, RPL_INFOSTART), ircd.me->name); 
    6262    if (info_text_copying != NULL) { 
    6363        for (i = 0;info_text_copying[i] != NULL;i++) 
  • branches/ithildin-1.1/modules/ircd/commands/motd.c

    r579 r736  
    3737    /* numerics .. */ 
    3838#define RPL_MOTD 372 
    39     CMSG("372", ":%s"); 
     39    CMSG("372", ":- %s"); 
    4040#define RPL_MOTDSTART 375 
    4141    CMSG("375", ":- %s Message of the Day - "); 
Note: See TracChangeset for help on using the changeset viewer.