diff options
Diffstat (limited to 'networking/httpd_indexcgi.c')
-rw-r--r-- | networking/httpd_indexcgi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd_indexcgi.c b/networking/httpd_indexcgi.c index fd64af38f..94c6a692a 100644 --- a/networking/httpd_indexcgi.c +++ b/networking/httpd_indexcgi.c | |||
@@ -125,7 +125,7 @@ static void guarantee(int size) | |||
125 | { | 125 | { |
126 | if (buffer + (BUFFER_SIZE-HEADROOM) - dst >= size) | 126 | if (buffer + (BUFFER_SIZE-HEADROOM) - dst >= size) |
127 | return; | 127 | return; |
128 | write(1, buffer, dst - buffer); | 128 | write(STDOUT_FILENO, buffer, dst - buffer); |
129 | dst = buffer; | 129 | dst = buffer; |
130 | } | 130 | } |
131 | 131 | ||