From 944e5fe8df2efac3b483f896b3cc350c10fa1c1a Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Wed, 23 Oct 2024 16:46:03 +0200 Subject: [PATCH] nanohttp: Fix another stdout file descriptor --- nanohttp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {