]> jfr.im git - irc.git/blob - software/!RELEASES/ircservices/achurch.org/services/lists/ircservices-coding/2001/000032.html
RELEASE -> !RELEASE
[irc.git] / software / !RELEASES / ircservices / achurch.org / services / lists / ircservices-coding / 2001 / 000032.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
2 <HTML>
3 <HEAD>
4 <TITLE> [IRCServices Coding] svcs5
5 </TITLE>
6 <LINK REL="Index" HREF="index.html" >
7 <LINK REL="made" HREF="mailto:ircservices-coding%40ircservices.za.net?Subject=%5BIRCServices%20Coding%5D%20svcs5&In-Reply-To=">
8 <META NAME="robots" CONTENT="index,nofollow">
9 <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
10 <LINK REL="Previous" HREF="000031.html">
11 <LINK REL="Next" HREF="000039.html">
12 </HEAD>
13 <BODY BGCOLOR="#ffffff">
14 <H1>[IRCServices Coding] svcs5</H1>
15 <B>v13 at priest.com</B>
16 <A HREF="mailto:ircservices-coding%40ircservices.za.net?Subject=%5BIRCServices%20Coding%5D%20svcs5&In-Reply-To="
17 TITLE="[IRCServices Coding] svcs5">v13 at priest.com
18 </A><BR>
19 <I>Sun Dec 16 14:20:32 PST 2001</I>
20 <P><UL>
21 <LI>Previous message: <A HREF="000031.html">[IRCServices Coding] svcs 5
22 </A></li>
23 <LI>Next message: <A HREF="000039.html">[IRCServices Coding] svcs5
24 </A></li>
25 <LI> <B>Messages sorted by:</B>
26 <a href="date.html#32">[ date ]</a>
27 <a href="thread.html#32">[ thread ]</a>
28 <a href="subject.html#32">[ subject ]</a>
29 <a href="author.html#32">[ author ]</a>
30 </LI>
31 </UL>
32 <HR>
33 <!--beginarticle-->
34 <PRE>in messages.c:
35
36 static void m_time(char *source, int ac, char **av)
37 {
38 time_t t;
39 struct tm *tm;
40 char buf[64];
41
42 time(&amp;t);
43 tm = localtime(&amp;t);
44 strftime(buf, sizeof(buf), &quot;%a %b %d %H:%M:%S %Y %Z&quot;, tm);
45 send_cmd(NULL, &quot;391 :%s&quot;, buf);
46 }
47
48 This should be:
49
50 send_cmd(NULL, &quot;391 %s %s :%s&quot;, source, ServerName, buf);
51
52 or something like that...
53
54 &lt;&lt;V13&gt;&gt;
55
56 </PRE>
57
58 <!--endarticle-->
59 <HR>
60 <P><UL>
61 <!--threads-->
62 <LI>Previous message: <A HREF="000031.html">[IRCServices Coding] svcs 5
63 </A></li>
64 <LI>Next message: <A HREF="000039.html">[IRCServices Coding] svcs5
65 </A></li>
66 <LI> <B>Messages sorted by:</B>
67 <a href="date.html#32">[ date ]</a>
68 <a href="thread.html#32">[ thread ]</a>
69 <a href="subject.html#32">[ subject ]</a>
70 <a href="author.html#32">[ author ]</a>
71 </LI>
72 </UL>
73
74 </body></html>