aboutsummaryrefslogtreecommitdiff
path: root/compat/hstrerror.c
Commit message (Collapse)AuthorAge
* compat/hstrerror: convert sprintf to snprintfJeff King2015-09-25
| | | | | | | | | | | | This is a trivially correct use of sprintf, as our error number should not be excessively long. But it's still nice to drop an sprintf call. Note that we cannot use xsnprintf here, because this is compat code which does not load git-compat-util.h. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
* Add a local implementation of hstrerror for the system which do not have itAlex Riesen2007-06-15
The function converts the value of h_errno (last error of name resolver library, see netdb.h). One of systems which supposedly do not have the function is SunOS. POSIX does not mandate its presence. Signed-off-by: Alex Riesen <raa.lkml@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>