diff options
author | Petr Baudis <pasky@ucw.cz> | 2005-04-26 21:04:55 +0200 |
---|---|---|
committer | Petr Baudis <xpasky@machine.sinus.cz> | 2005-05-11 22:37:58 +0200 |
commit | 071c41a047e4c851836669648716e361f8e0b5ad (patch) | |
tree | 952f6d0737828e1001a47689a33d860e3b165bb0 /update-cache.c | |
parent | Adjust quoting styles for some environment variables in the documentation. (diff) | |
download | tgif-071c41a047e4c851836669648716e361f8e0b5ad.tar.xz |
Make update-cache be explicit about failed open() when doing
add_file_to_cache().
Diffstat (limited to 'update-cache.c')
-rw-r--r-- | update-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update-cache.c b/update-cache.c index 2f5d620fd8..d7caed64f3 100644 --- a/update-cache.c +++ b/update-cache.c @@ -73,7 +73,7 @@ static int add_file_to_cache(char *path) if (allow_remove) return remove_file_from_cache(path); } - return -1; + return error("open(\"%s\"): %s", path, strerror(errno)); } namelen = strlen(path); size = cache_entry_size(namelen); |