1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

s/package_exists/package_installed/g as that's much more descriptive of

what the function does.
This commit is contained in:
David E. O'Brien 2004-01-02 09:52:14 +00:00
parent b0d55f3fc9
commit b4fe6d086f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=124070

View File

@ -121,7 +121,7 @@ package_extract(Device *dev, char *name, Boolean depended)
last_msg = 0;
/* Check to make sure it's not already there */
if (package_exists(name))
if (package_installed(name))
return DITEM_SUCCESS;
if (!DEVICE_INIT(dev)) {