diff options
author | Junio C Hamano <junkio@cox.net> | 2007-02-06 12:46:11 -0800 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-02-06 16:08:30 -0500 |
commit | 9981b6d915a49d325f790f2aa825aa56ae4ac85c (patch) | |
tree | 9b793218aabc4f7a7c15d7c9b9848463408c4588 /fast-import.c | |
parent | 7073e69e382bc8247c28859d8b0eda2612cd6b94 (diff) | |
download | git-9981b6d915a49d325f790f2aa825aa56ae4ac85c.tar.gz |
S_IFLNK != 0140000
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'fast-import.c')
-rw-r--r-- | fast-import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fast-import.c b/fast-import.c index df84e4d87d..c72c5c7a94 100644 --- a/fast-import.c +++ b/fast-import.c @@ -81,7 +81,7 @@ Format of STDIN stream: path_str ::= path | '"' quoted(path) '"' ; mode ::= '100644' | '644' | '100755' | '755' - | '140000' + | '120000' ; declen ::= # unsigned 32 bit value, ascii base10 notation; |