Replace striplt() with string_trim() in all the places VS Code simply decided not to.
[citadel.git] / webcit / useredit.c
index 80371dc9f4e9ef6a368192a3158b0f1aa8873e26..05cab0d453ac7e394e56cd17e3bf716e39c66cc8 100644 (file)
@@ -800,7 +800,7 @@ void edituser(void) {
                }
 
                /* Remove any naughty inappropriate whitespace */
-               striplt(all_the_emails);
+               string_trim(all_the_emails);
                while (pos = strstr(all_the_emails, "\n,"), (pos != NULL)) {
                        strcpy(pos, pos+1);
                }