* move some more vars from the session context to strbuf (the use of StrBufAppendTemp...
[citadel.git] / webcit / http_datestring.c
index 908e65424e1e00bbf8f1d60ec062c8462164b48b..f3db04ce9783427b1d5ed8060121eebb37b4e389 100644 (file)
@@ -64,13 +64,13 @@ void http_datestring(char *buf, size_t n, time_t xtime) {
 }
 
 
-void tmplput_nowstr(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
+void tmplput_nowstr(StrBuf *Target, WCTemplputParams *TP)
 {
        time_t now;
        now = time(NULL);
        StrEscAppend(Target, NULL, asctime(localtime(&now)), 0, 0);
 }
-void tmplput_nowno(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
+void tmplput_nowno(StrBuf *Target, WCTemplputParams *TP)
 {
        time_t now;
        now = time(NULL);