]> git.ipfire.org Git - thirdparty/git.git/commit - usage.c
Introduce die_errno() that appends strerror(errno) to die()
authorThomas Rast <trast@student.ethz.ch>
Sat, 27 Jun 2009 15:58:44 +0000 (17:58 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sat, 27 Jun 2009 18:14:53 +0000 (11:14 -0700)
commitb875036e5a2ab569a2123abe9ebfe25258227951
treec11c59688995601576bc6726db42e7d41ac755d9
parent26c117d05d0714ab688ebcafc8eb68c769152bde
Introduce die_errno() that appends strerror(errno) to die()

There are many calls to die() that do, or should, report
strerror(errno) to indicate how the syscall they guard failed.
Introduce a small helper function for this case.

Note:

- POSIX says vsnprintf can modify errno in some unlikely cases, so we
  have to use errno early.

- We take some care to pass the original format to die_routine(), in
  case someone wants to call die_errno() with custom format
  characters.

Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-compat-util.h
usage.c