striplt() is now string_trim()
[citadel.git] / libcitadel / lib / html_to_ascii.c
index 33373c19d3c44cd4f75a28d2a457f09ba3d3e12c..251f1adea777b2661a27edcc4ec848a213d6e338 100644 (file)
@@ -591,7 +591,7 @@ char *html_to_ascii(const char *inputmsg, int msglen, int screenwidth, int ansi)
        output_len += strlen(outbuf);
 
        /* Strip leading/trailing whitespace.  We can't do this with
-        * striplt() because it uses too many strlen()'s
+        * string_trim() because it uses too many strlen()'s
         */
        while ((output_len > 0) && (isspace(outptr[0]))) {
                strcpy(outptr, &outptr[1]);