diff options
author | Pavel Roskin <proski@gnu.org> | 2005-11-15 00:59:50 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-01-19 23:14:31 -0800 |
commit | 2fabd217330ea6a5b5082e9e86b169e3401de889 (patch) | |
tree | 9f17774c4acacec3f9ae1748887b2e7ec6df26d7 /refs.c | |
parent | 949964c4af740015c53cb7630fea8795e0f710a0 (diff) | |
download | git-2fabd217330ea6a5b5082e9e86b169e3401de889.tar.gz git-2fabd217330ea6a5b5082e9e86b169e3401de889.tar.xz |
Disable USE_SYMLINK_HEAD by default
Disable USE_SYMLINK_HEAD by default. Recommend using it only for
compatibility with older software.
Treat USE_SYMLINK_HEAD like other optional defines - check whether it's
defined, not its value.
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'refs.c')
-rw-r--r-- | refs.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -6,10 +6,6 @@ /* We allow "recursive" symbolic refs. Only within reason, though */ #define MAXDEPTH 5 -#ifndef USE_SYMLINK_HEAD -#define USE_SYMLINK_HEAD 1 -#endif - const char *resolve_ref(const char *path, unsigned char *sha1, int reading) { int depth = MAXDEPTH, len; @@ -80,7 +76,7 @@ int create_symref(const char *git_HEAD, const char *refs_heads_master) char ref[1000]; int fd, len, written; -#if USE_SYMLINK_HEAD +#ifdef USE_SYMLINK_HEAD if (!only_use_symrefs) { unlink(git_HEAD); if (!symlink(refs_heads_master, git_HEAD)) |