- Timestamp:
- 05/30/06 04:52:22 (6 years ago)
- Location:
- branches/ithildin-1.1/modules
- Files:
-
- 3 edited
-
dns/packet.c (modified) (1 diff)
-
ircd/commands/info.c (modified) (2 diffs)
-
ircd/commands/motd.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/ithildin-1.1/modules/dns/packet.c
r735 r736 86 86 /* Trying alternate code here... */ 87 87 for (i = 15;i >= 0;i--) 88 sprintf(s + ((15 - i) * 4), "%x.%x." .88 sprintf(s + ((15 - i) * 4), "%x.%x.", 89 89 s2[i] & 0xf, (s2[i] >> 4) & 0xf); 90 90 strcat(s, "ip6.arpa"); -
branches/ithildin-1.1/modules/ircd/commands/info.c
r579 r736 34 34 CMSG("371", ":%s"); 35 35 #define RPL_INFOSTART 373 36 CMSG("373", ": Server INFO");36 CMSG("373", ":%s Server INFO"); 37 37 #define RPL_ENDOFINFO 374 38 38 CMSG("374", ":End of /INFO list."); … … 59 59 int i, lines = 2; 60 60 61 sendto_one(cli, RPL_FMT(cli, RPL_INFOSTART) );61 sendto_one(cli, RPL_FMT(cli, RPL_INFOSTART), ircd.me->name); 62 62 if (info_text_copying != NULL) { 63 63 for (i = 0;info_text_copying[i] != NULL;i++) -
branches/ithildin-1.1/modules/ircd/commands/motd.c
r579 r736 37 37 /* numerics .. */ 38 38 #define RPL_MOTD 372 39 CMSG("372", ": %s");39 CMSG("372", ":- %s"); 40 40 #define RPL_MOTDSTART 375 41 41 CMSG("375", ":- %s Message of the Day - ");
Note: See TracChangeset
for help on using the changeset viewer.
