summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_install/add/futil.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/pkg_install/add/futil.c')
-rw-r--r--usr.sbin/pkg_install/add/futil.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/pkg_install/add/futil.c b/usr.sbin/pkg_install/add/futil.c
index 52a8e07dbdc..b58c316558d 100644
--- a/usr.sbin/pkg_install/add/futil.c
+++ b/usr.sbin/pkg_install/add/futil.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: futil.c,v 1.5 1999/06/24 17:27:11 espie Exp $ */
+/* $OpenBSD: futil.c,v 1.6 2001/04/08 16:45:46 espie Exp $ */
#ifndef lint
-static const char *rcsid = "$OpenBSD: futil.c,v 1.5 1999/06/24 17:27:11 espie Exp $";
+static const char *rcsid = "$OpenBSD: futil.c,v 1.6 2001/04/08 16:45:46 espie Exp $";
#endif
/*
@@ -80,11 +80,11 @@ apply_perms(char *dir, char *arg)
if (vsystem("cd %s && chown -R %s:%s %s", cd_to, real_owner ,
real_group, arg))
- warnx("couldn't change owner/group of '%s' to '%s:%s'",
+ pwarnx("couldn't change owner/group of '%s' to '%s:%s'",
arg, real_owner, real_group);
}
if (Mode)
if (vsystem("cd %s && chmod -R %s %s", cd_to, Mode, arg))
- warnx("couldn't change modes of '%s' to '%s'", arg, Mode);
+ pwarnx("couldn't change modes of '%s' to '%s'", arg, Mode);
}