diff options
author | Arno Töll <arno@debian.org> | 2012-11-21 23:03:41 +0100 |
---|---|---|
committer | Arno Töll <arno@debian.org> | 2012-11-21 23:03:41 +0100 |
commit | 6a6df8dc258631c6eaccb03bf08845241f6dfa4a (patch) | |
tree | 01eee8de64a85e5e2fef929050663ea2d3c850bd /src/data_string.c | |
parent | ec2cb646eff482dfe32955d01781b01211b0a77c (diff) | |
download | lighttpd-6a6df8dc258631c6eaccb03bf08845241f6dfa4a.tar.gz |
Imported Upstream version 1.4.12upstream/1.4.12
Diffstat (limited to 'src/data_string.c')
-rw-r--r-- | src/data_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data_string.c b/src/data_string.c index d9325da..391af9e 100644 --- a/src/data_string.c +++ b/src/data_string.c @@ -71,7 +71,7 @@ static void data_string_print(const data_unset *d, int depth) { data_string *ds = (data_string *)d; UNUSED(depth); - fprintf(stderr, "\"%s\"", ds->value->used ? ds->value->ptr : ""); + fprintf(stdout, "\"%s\"", ds->value->used ? ds->value->ptr : ""); } |