* Noted that the Wiki view is broken. Must begin working on this again.
[citadel.git] / webcit / webserver.c
index 064031ff36a9805d78f880ed888423287551e514..a4fcdef03c28465e528abcafdb14571f5f074caa 100644 (file)
@@ -332,6 +332,7 @@ int main(int argc, char **argv)
        char uds_listen_path[PATH_MAX]; /* listen on a unix domain socket? */
        const char *I18nDumpFile = NULL;
        FILE *rvfp = NULL;
+       int rv = 0;
 
        WildFireInitBacktrace(argv[0], 2);
 
@@ -503,7 +504,7 @@ int main(int argc, char **argv)
                        lprintf(1, "********************************************************************************\n");
                        return -1;
                }
-               fwrite(ChrPtr(I18nDump), 1, StrLength(I18nDump), fd);
+               rv = fwrite(ChrPtr(I18nDump), 1, StrLength(I18nDump), fd);
                fclose(fd);
                return 0;
        }