diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1998-11-22 23:22:42 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1998-11-22 23:22:42 +0000 |
commit | 17125785f3b6bdca2f27d2e12cd4c813d3143f61 (patch) | |
tree | 76e568824f60058a31cdedb51db5ab97f94cf27b /usr.sbin/pkg_install/info | |
parent | be4ee36e868897170cb8ec0c66348f09abf68633 (diff) |
fixed typo, noticed by jbernard@ox.mines.edu (netbsd/pkg/6481)
Diffstat (limited to 'usr.sbin/pkg_install/info')
-rw-r--r-- | usr.sbin/pkg_install/info/show.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg_install/info/show.c b/usr.sbin/pkg_install/info/show.c index df068142fee..5419bed5aae 100644 --- a/usr.sbin/pkg_install/info/show.c +++ b/usr.sbin/pkg_install/info/show.c @@ -1,7 +1,7 @@ -/* $OpenBSD: show.c,v 1.5 1998/11/19 04:12:55 espie Exp $ */ +/* $OpenBSD: show.c,v 1.6 1998/11/22 23:22:41 espie Exp $ */ #ifndef lint -static const char *rcsid = "$OpenBSD: show.c,v 1.5 1998/11/19 04:12:55 espie Exp $"; +static const char *rcsid = "$OpenBSD: show.c,v 1.6 1998/11/22 23:22:41 espie Exp $"; #endif /* @@ -39,7 +39,7 @@ typedef struct show_t { /* the entries in this table must be ordered the same as pl_ent_t constants */ static show_t showv[] = { { PLIST_FILE, "%s", "File: %s" }, - { PLIST_CWD, "@cwd: %s", "\tCWD to: %s" }, + { PLIST_CWD, "@cwd %s", "\tCWD to: %s" }, { PLIST_CMD, "@exec %s", "\tEXEC '%s'" }, { PLIST_CHMOD, "@chmod %s", "\tCHMOD to %s" }, { PLIST_CHOWN, "@chown %s", "\tCHOWN to %s" }, |