diff options
author | Björn Engelmann <BjEngelmann@gmx.de> | 2006-05-23 20:19:04 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-23 13:38:29 -0700 |
commit | e7332f96b32bedbc39ff6ff7e845c902056099f5 (patch) | |
tree | 3dd4f1bbf881f2af2f8119c6c33a95cbb95b0271 /cache.h | |
parent | 405053d2d98c613d028795df439de657981e0711 (diff) | |
download | git-e7332f96b32bedbc39ff6ff7e845c902056099f5.tar.gz git-e7332f96b32bedbc39ff6ff7e845c902056099f5.tar.xz |
remove the artificial restriction tagsize < 8kb
Signed-off-by: Björn Engelmann <BjEngelmann@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -154,6 +154,7 @@ extern int ce_match_stat(struct cache_entry *ce, struct stat *st, int); extern int ce_modified(struct cache_entry *ce, struct stat *st, int); extern int ce_path_match(const struct cache_entry *ce, const char **pathspec); extern int index_fd(unsigned char *sha1, int fd, struct stat *st, int write_object, const char *type); +extern int read_pipe(int fd, char** return_buf, unsigned long* return_size); extern int index_pipe(unsigned char *sha1, int fd, const char *type, int write_object); extern int index_path(unsigned char *sha1, const char *path, struct stat *st, int write_object); extern void fill_stat_cache_info(struct cache_entry *ce, struct stat *st); |