Re: Patch recommendation for replace invoke of error() to that of error_errno()

2018-01-04 Thread Jeff King
On Fri, Jan 05, 2018 at 11:24:02AM +0800, 牛旭 wrote: > Our team researches on consistent update of Git during evolution. And > we have figured out several spots that may be missed.  > > > By mining historical patches, we suggest that invokes of error(..., > strerror(errno)) should be replaced wit

Patch recommendation for replace invoke of error() to that of error_errno()

2018-01-04 Thread 牛旭
Our team researches on consistent update of Git during evolution. And we have figured out several spots that may be missed.  By mining historical patches, we suggest that invokes of error(..., strerror(errno)) should be replaced with that of error_errno(). One example for recommendation and co