From 74a2ee415006c7cb0942f3312ea1bc5cf43efe69 Mon Sep 17 00:00:00 2001 From: obrien Date: Fri, 2 Jan 2004 09:19:13 +0000 Subject: s/package_exists/package_installed/g as that's much more descriptive of what the function does. --- usr.sbin/sysinstall/index.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'usr.sbin/sysinstall/index.c') diff --git a/usr.sbin/sysinstall/index.c b/usr.sbin/sysinstall/index.c index b7ef309..4ceea81 100644 --- a/usr.sbin/sysinstall/index.c +++ b/usr.sbin/sysinstall/index.c @@ -4,8 +4,6 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $FreeBSD$ - * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. * @@ -32,6 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $FreeBSD$ */ #include @@ -220,7 +219,7 @@ new_index(char *name, char *pathto, char *prefix, char *comment, char *descr, ch tmp->maintainer = _strdup(maint); tmp->deps = _strdup(deps); tmp->depc = 0; - tmp->installed = package_exists(name); + tmp->installed = package_installed(name); tmp->volume = volume; return tmp; } -- cgit v1.1