xrealpath: give more user-friendly error messages

This commit is contained in:
Albert S. 2020-08-15 22:33:35 +02:00
부모 8b6291b6ca
커밋 519afe63d1
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -103,7 +103,8 @@ char *xrealpath(const char *path, char *resolved_path)
char *tmp = realpath(path, resolved_path);
if(tmp == NULL)
{
perror("realpath");
char *errorstr = strerror(errno);
fprintf(stderr, "realpath on %s failed: %s\n", path, errorstr);
exit(EXIT_FAILURE);
}
return tmp;