summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/general.c1
-rw-r--r--src/print_file_contents.c6
2 files changed, 4 insertions, 3 deletions
diff --git a/src/general.c b/src/general.c
index c089126..6036b69 100644
--- a/src/general.c
+++ b/src/general.c
@@ -18,7 +18,6 @@
die(__VA_ARGS__); \
}
-
/*
* Reads size bytes into the destination buffer from filename.
*
diff --git a/src/print_file_contents.c b/src/print_file_contents.c
index 37701f1..b66321a 100644
--- a/src/print_file_contents.c
+++ b/src/print_file_contents.c
@@ -19,11 +19,13 @@ void print_file_contents(yajl_gen json_gen, char *buffer, const char *title, con
char *outwalk = buffer;
char *buf = scalloc(max_chars * sizeof(char) + 1);
- int n = -1;
- int fd = open(path, O_RDONLY);
+ char *abs_path = resolve_tilde(path);
+ int fd = open(abs_path, O_RDONLY);
+ free(abs_path);
INSTANCE(path);
+ int n = -1;
if (fd > -1) {
n = read(fd, buf, max_chars);
if (n != -1) {