X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=setup.c;h=1b06db53fc24f1347e2a73bbecb44a059882e898;hb=36ed1913e1d5de0930e59db6eeec3ccb2bd58bd9;hp=013ad1127534367e64afeec3749e617ceccfb5d4;hpb=8784e4dddeb16a89dd19bfb879788b8df0aac1f5;p=git.git diff --git a/setup.c b/setup.c index 013ad1127..1b06db53f 100644 --- a/setup.c +++ b/setup.c @@ -375,14 +375,14 @@ static int check_repository_format_gently(const char *gitdir, int *nongit_ok) * Try to read the location of the git directory from the .git file, * return path to git directory if found. */ -const char *read_gitfile_gently(const char *path) +const char *read_gitfile(const char *path) { char *buf; char *dir; const char *slash; struct stat st; int fd; - size_t len; + ssize_t len; if (stat(path, &st)) return NULL; @@ -437,7 +437,7 @@ static const char *setup_explicit_git_dir(const char *gitdirenv, if (PATH_MAX - 40 < strlen(gitdirenv)) die("'$%s' too big", GIT_DIR_ENVIRONMENT); - gitfile = (char*)read_gitfile_gently(gitdirenv); + gitfile = (char*)read_gitfile(gitdirenv); if (gitfile) { gitfile = xstrdup(gitfile); gitdirenv = gitfile; @@ -661,7 +661,7 @@ static const char *setup_git_directory_gently_1(int *nongit_ok) if (one_filesystem) current_device = get_device_or_die(".", NULL); for (;;) { - gitfile = (char*)read_gitfile_gently(DEFAULT_GIT_DIR_ENVIRONMENT); + gitfile = (char*)read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT); if (gitfile) gitdirenv = gitfile = xstrdup(gitfile); else {