commit - febee0fd3632e7a5830fb9853b4ceecdebd07f68
commit + 62baee9a86a9325d23bf2f048d28f38b978f707d
blob - d85bb9c97e68310aaa7e391da369828c9e43bbfb
blob + 480a6f9d0e7a60f9920ec458ea66f95802e59079
--- lib/pack.c
+++ lib/pack.c
* the existence of lonely pack index files but we do not.
*/
if (fstatat(dir_fd, pack_relpath, &pack_sb, 0) == -1) {
- if (errno == ENOENT) {
- err = got_error_fmt(GOT_ERR_LONELY_PACKIDX,
- "%s", relpath);
- } else
+ if (errno == ENOENT)
+ err = got_error_path(relpath, GOT_ERR_LONELY_PACKIDX);
+ else
err = got_error_from_errno2("fstatat", pack_relpath);
goto done;
}