diff options
author | Jonas Fonseca <fonseca@diku.dk> | 2006-08-26 16:09:17 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-26 17:52:58 -0700 |
commit | 095c424d08d96a5f9ee3ca53ae952e92c5cff99b (patch) | |
tree | 4aac2fb179e264d7fb48813a7bd91025d449c0b3 | |
parent | eb950c192a0e0dfc069e16e857cbe1ae16d8ad82 (diff) | |
download | git-095c424d08d96a5f9ee3ca53ae952e92c5cff99b.tar.gz |
Use PATH_MAX instead of MAXPATHLEN
According to sys/paramh.h it's a "BSD name" for values defined in
<limits.h>. Besides PATH_MAX seems to be more commonly used.
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | builtin-checkout-index.c | 2 | ||||
-rw-r--r-- | dir.c | 2 | ||||
-rw-r--r-- | entry.c | 4 | ||||
-rw-r--r-- | git-compat-util.h | 3 |
4 files changed, 3 insertions, 8 deletions
diff --git a/builtin-checkout-index.c b/builtin-checkout-index.c index 6b55f931cb..b097c888a0 100644 --- a/builtin-checkout-index.c +++ b/builtin-checkout-index.c @@ -45,7 +45,7 @@ static int line_termination = '\n'; static int checkout_stage; /* default to checkout stage0 */ static int to_tempfile; -static char topath[4][MAXPATHLEN+1]; +static char topath[4][PATH_MAX + 1]; static struct checkout state; @@ -293,7 +293,7 @@ static int read_directory_recursive(struct dir_struct *dir, const char *path, co if (fdir) { int exclude_stk; struct dirent *de; - char fullname[MAXPATHLEN + 1]; + char fullname[PATH_MAX + 1]; memcpy(fullname, base, baselen); exclude_stk = push_exclude_per_directory(dir, base, baselen); @@ -135,7 +135,7 @@ static int write_entry(struct cache_entry *ce, char *path, struct checkout *stat int checkout_entry(struct cache_entry *ce, struct checkout *state, char *topath) { - static char path[MAXPATHLEN+1]; + static char path[PATH_MAX + 1]; struct stat st; int len = state->base_dir_len; @@ -172,5 +172,3 @@ int checkout_entry(struct cache_entry *ce, struct checkout *state, char *topath) create_directories(path, state); return write_entry(ce, path, state, 0); } - - diff --git a/git-compat-util.h b/git-compat-util.h index b2e18954c0..91f2b0d3f0 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -172,7 +172,4 @@ static inline int sane_case(int x, int high) return x; } -#ifndef MAXPATHLEN -#define MAXPATHLEN 256 -#endif #endif |