projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d81ed1b
)
Make update-cache be explicit about failed open() when doing
author
Petr Baudis
<pasky@ucw.cz>
Tue, 26 Apr 2005 19:04:55 +0000
(21:04 +0200)
committer
Petr Baudis
<xpasky@machine.sinus.cz>
Wed, 11 May 2005 20:37:58 +0000
(22:37 +0200)
add_file_to_cache().
update-cache.c
patch
|
blob
|
history
diff --git
a/update-cache.c
b/update-cache.c
index
2f5d620
..
d7caed6
100644
(file)
--- 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);