* move some more vars from the session context to strbuf (the use of StrBufAppendTemp...
[citadel.git] / webcit / utils.c
index c2a4c02fa424f99d5fc5b36c9bc4c24d8891c922..0c10e4d9a3e59d2a0985afda75d71d09529cd8c7 100644 (file)
@@ -130,7 +130,7 @@ long stresc(char *target, long tSize, char *strbuf, int nbsp, int nolinebreaks)
 }
 
 
-void escputs1(char *strbuf, int nbsp, int nolinebreaks)
+void escputs1(const char *strbuf, int nbsp, int nolinebreaks)
 {
        StrEscAppend(WC->WBuf, NULL, strbuf, nbsp, nolinebreaks);
 }
@@ -143,7 +143,7 @@ void StrEscputs1(const StrBuf *strbuf, int nbsp, int nolinebreaks)
 /* 
  * static wrapper for ecsputs1
  */
-void escputs(char *strbuf)
+void escputs(const char *strbuf)
 {
        escputs1(strbuf, 0, 0);
 }