diff --git a/nanohttp.c b/nanohttp.c index d8e40398..f405da41 100644 --- a/nanohttp.c +++ b/nanohttp.c @@ -1627,7 +1627,7 @@ xmlNanoHTTPSave(void *ctxt, const char *filename) { if ((ctxt == NULL) || (filename == NULL)) return(-1); if (!strcmp(filename, "-")) - fd = 0; + fd = 1; /* STDOUT_FILENO */ else { fd = open(filename, O_CREAT | O_WRONLY, 0666); if (fd < 0) {