Whoops, this function is supposed to return a boolean status, not

flags.
This commit is contained in:
Jordan K. Hubbard 1999-12-20 00:16:10 +00:00
parent 5525aae621
commit 126e9198eb
2 changed files with 2 additions and 2 deletions

View File

@ -247,5 +247,5 @@ package_extract(Device *dev, char *name, Boolean depended)
ret = DITEM_FAILURE;
}
signal(SIGPIPE, SIG_IGN);
return ret | DITEM_RESTORE;
return ret;
}

View File

@ -247,5 +247,5 @@ package_extract(Device *dev, char *name, Boolean depended)
ret = DITEM_FAILURE;
}
signal(SIGPIPE, SIG_IGN);
return ret | DITEM_RESTORE;
return ret;
}