~ubuntu-branches/ubuntu/hardy/lighttpd/hardy-updates

« back to all changes in this revision

Viewing changes to src/data_string.c

  • Committer: Bazaar Package Importer
  • Author(s): Lukas Fittl
  • Date: 2006-10-10 13:57:38 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20061010135738-gn4pp1ut1s1g27pb
Tags: 1.4.13~r1370-1ubuntu1
* Merge from Debian unstable (Closes: Malone #64900). Remaining changes:
  - Add an additional dependency on libterm-readline-perl-perl
    (Malone #43895)

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
        data_string *ds = (data_string *)d;
72
72
        UNUSED(depth);
73
73
 
74
 
        fprintf(stderr, "\"%s\"", ds->value->used ? ds->value->ptr : "");
 
74
        fprintf(stdout, "\"%s\"", ds->value->used ? ds->value->ptr : "");
75
75
}
76
76
 
77
77