From: Junio C Hamano Date: Wed, 28 Feb 2007 19:57:39 +0000 (-0800) Subject: index_fd(): convert blob only if it is a regular file. X-Git-Tag: v1.5.1-rc1~116 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d0d8e14d1bad5f5ad3fb27a6ac819ff4e7006f03;p=git.git index_fd(): convert blob only if it is a regular file. Signed-off-by: Junio C Hamano --- diff --git a/sha1_file.c b/sha1_file.c index fe73904cb..6d0a72ed0 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -2071,7 +2071,7 @@ int index_fd(unsigned char *sha1, int fd, struct stat *st, int write_object, /* * Convert blobs to git internal format */ - if (type == OBJ_BLOB) { + if ((type == OBJ_BLOB) && S_ISREG(st->st_mode)) { unsigned long nsize = size; char *nbuf = buf; if (convert_to_git(path, &nbuf, &nsize)) {