Unidiff1 files changed, 4 insertions, 0 deletions
|
diff --git a/parsing.c b/parsing.c index c8f3048..f3f3b15 100644 --- a/ parsing.c+++ b/ parsing.c |
|
@@ -97,4 +97,7 @@ char *parse_user(char *t, char **name, char **email, unsigned long *date) |
97 | } |
97 | } |
98 | |
98 | |
| |
99 | #ifdef NO_ICONV |
| |
100 | #define reencode(a, b, c) |
| |
101 | #else |
99 | const char *reencode(char **txt, const char *src_enc, const char *dst_enc) |
102 | const char *reencode(char **txt, const char *src_enc, const char *dst_enc) |
100 | { |
103 | { |
@@ -111,4 +114,5 @@ const char *reencode(char **txt, const char *src_enc, const char *dst_enc) |
111 | return *txt; |
114 | return *txt; |
112 | } |
115 | } |
| |
116 | #endif |
113 | |
117 | |
114 | struct commitinfo *cgit_parse_commit(struct commit *commit) |
118 | struct commitinfo *cgit_parse_commit(struct commit *commit) |
|