diff options
author | Mark Lodato <lodatom@gmail.com> | 2010-09-04 14:18:16 -0400 |
---|---|---|
committer | Mark Lodato <lodatom@gmail.com> | 2010-09-04 14:30:10 -0400 |
commit | d187b98557d91b874836f286b955ba76ab26fb02 (patch) | |
tree | b8cf6224768c70c69450a7f6643393e342786594 /ui-tree.c | |
parent | 25e8ba1996a7b5ea291c924b0990d706176f6fe6 (diff) |
prefer html_raw() to write()
To make the code more consistent, and to not rely on the implementation
of html(), always use html_raw(...) instead of write(htmlfd, ...).
Signed-off-by: Mark Lodato <lodatom@gmail.com>
Diffstat (limited to 'ui-tree.c')
-rw-r--r-- | ui-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ static void print_text_buffer(const char *name, char *buf, unsigned long size) html("<td class='lines'><pre><code>"); ctx.repo->source_filter->argv[1] = xstrdup(name); cgit_open_filter(ctx.repo->source_filter); - write(STDOUT_FILENO, buf, size); + html_raw(buf, size); cgit_close_filter(ctx.repo->source_filter); html("</code></pre></td></tr></table>\n"); return; |