X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=libcitadel%2Flib%2Fhtml_to_ascii.c;fp=libcitadel%2Flib%2Fhtml_to_ascii.c;h=251f1adea777b2661a27edcc4ec848a213d6e338;hb=6957096b74edcaa677c056cff53cdd7e974cc605;hp=33373c19d3c44cd4f75a28d2a457f09ba3d3e12c;hpb=f45364a96d0b8cc0878373c60e4874457c7b6184;p=citadel.git diff --git a/libcitadel/lib/html_to_ascii.c b/libcitadel/lib/html_to_ascii.c index 33373c19d..251f1adea 100644 --- a/libcitadel/lib/html_to_ascii.c +++ b/libcitadel/lib/html_to_ascii.c @@ -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]);