added a chk_non_negative check

This commit is contained in:
Michael Krelin 2007-07-20 20:56:43 +02:00
parent 3aae82703b
commit 127f43d4e2
2 changed files with 8 additions and 0 deletions

View file

@ -86,6 +86,13 @@ int chk_positive(int result, char *msg)
return result;
}
int chk_non_negative(int result, char *msg)
{
if (result < 0)
die("%s: %s",msg, strerror(errno));
return result;
}
struct repoinfo *add_repo(const char *url)
{
struct repoinfo *ret;