summaryrefslogtreecommitdiffabout
path: root/ui-blob.c
authorLars Hjemli <hjemli@gmail.com>2008-03-25 01:43:51 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-04-08 19:35:00 (UTC)
commitfa4dfee5489d8c829da92637dd84e8650439f313 (patch) (side-by-side diff)
tree2c5e6ffd0a20de58de7353acb278e76a56d23bb6 /ui-blob.c
parent23296ad648c0e2a9e3cf40a3de322b10ad25cce3 (diff)
downloadcgit-fa4dfee5489d8c829da92637dd84e8650439f313.zip
cgit-fa4dfee5489d8c829da92637dd84e8650439f313.tar.gz
cgit-fa4dfee5489d8c829da92637dd84e8650439f313.tar.bz2
Don't specify mimetype in ui-blob.c
But be sure to specify correct filename. This way, the client can hopefully guess a sensible mimetype based on the filename suffix, and cgit can ignore the issue altogether. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-blob.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-blob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-blob.c b/ui-blob.c
index 11589db..ab44659 100644
--- a/ui-blob.c
+++ b/ui-blob.c
@@ -1,43 +1,43 @@
/* ui-blob.c: show blob content
*
* Copyright (C) 2008 Lars Hjemli
*
* Licensed under GNU General Public License v2
* (see COPYING for full license text)
*/
#include "cgit.h"
#include "html.h"
#include "ui-shared.h"
void cgit_print_blob(const char *hex, char *path)
{
unsigned char sha1[20];
enum object_type type;
unsigned char *buf;
unsigned long size;
if (get_sha1_hex(hex, sha1)){
cgit_print_error(fmt("Bad hex value: %s", hex));
return;
}
type = sha1_object_info(sha1, &size);
if (type == OBJ_BAD) {
cgit_print_error(fmt("Bad object name: %s", hex));
return;
}
buf = read_sha1_file(sha1, &type, &size);
if (!buf) {
cgit_print_error(fmt("Error reading object %s", hex));
return;
}
buf[size] = '\0';
- ctx.page.mimetype = "text/plain";
+ ctx.page.mimetype = NULL;
ctx.page.filename = path;
cgit_print_http_headers(&ctx);
write(htmlfd, buf, size);
}