Removed err_* and sln_* functions; replaced all calls with scr_* functions.
[citadel.git] / citadel / textclient / commands.c
index 0465db3cda427f53d275501b0de02f6f046648a4..9ab121e00cbfd7e7bd5774435ec036d3c69ae918 100644 (file)
@@ -1352,7 +1352,7 @@ int fmout(
        /* Space for a single word, which can be at most screenwidth */
        word = (char *)calloc(1, width);
        if (!word) {
-               err_printf("Can't alloc memory to print message: %s!\n",
+               scr_printf("Can't alloc memory to print message: %s!\n",
                                strerror(errno));
                logoff(NULL, 3);
        }
@@ -1361,7 +1361,7 @@ int fmout(
        if (fpin) {
                buffer = load_message_from_file(fpin);
                if (!buffer) {
-                       err_printf("Can't print message: %s!\n",
+                       scr_printf("Can't print message: %s!\n",
                                        strerror(errno));
                        logoff(NULL, 3);
                }