diff options
author | Fernando J. Pereda <ferdy@gentoo.org> | 2007-05-20 15:35:46 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-20 14:40:34 -0700 |
commit | 1472966c04103874096fb786657459ea6628e451 (patch) | |
tree | 7b00027f21a95104266f62f68c352223526f4cdf /diff.c | |
parent | 078f8380f65acfdffee077a642e982453277873a (diff) | |
download | git-1472966c04103874096fb786657459ea6628e451.tar.gz |
Use PATH_MAX instead of TEMPFILE_PATH_LEN
Signed-off-by: Fernando J. Pereda <ferdy@gentoo.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff.c')
-rw-r--r-- | diff.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -137,13 +137,11 @@ static const char *external_diff(void) return external_diff_cmd; } -#define TEMPFILE_PATH_LEN 50 - static struct diff_tempfile { const char *name; /* filename external diff should read from */ char hex[41]; char mode[10]; - char tmp_path[TEMPFILE_PATH_LEN]; + char tmp_path[PATH_MAX]; } diff_temp[2]; static int count_lines(const char *data, int size) @@ -1507,7 +1505,7 @@ static void prep_temp_blob(struct diff_tempfile *temp, { int fd; - fd = git_mkstemp(temp->tmp_path, TEMPFILE_PATH_LEN, ".diff_XXXXXX"); + fd = git_mkstemp(temp->tmp_path, PATH_MAX, ".diff_XXXXXX"); if (fd < 0) die("unable to create temp-file"); if (write_in_full(fd, blob, size) != size) |