Changed "supplied_xxx" to "xxx_in" when we modify.
[citadel.git] / webcit-ng / server / text2html.c
index 5c7eba6e23fd6e7c9fa4a95d4e0fcb15127ed01a..1f96a4d06ca2f1dc924d9338fb86094170794d0a 100644 (file)
@@ -2,14 +2,13 @@
 //
 // Copyright (c) 2017-2022 by the citadel.org team
 //
-// This program is open source software.  Use, duplication, or
-// disclosure is subject to the GNU General Public License v3.
+// This program is open source software.  Use, duplication, or disclosure is subject to the GNU General Public License v3.
 
 #include "webcit.h"
 
 
 // Convert a text/plain message to text/html
-StrBuf *text2html(const char *supplied_charset, int treat_as_wiki, char *roomname, long msgnum, StrBuf *Source) {
+StrBuf *text2html(const char *charset, int treat_as_wiki, char *roomname, long msgnum, StrBuf *Source) {
        StrBuf *sj = NULL;
 
        sj = NewStrBuf();