diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-10-18 05:42:05 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-10-18 05:42:05 +0000 |
| commit | 47af563ed0b2ea449dc2bdc78e3ae6a73a77be47 (patch) | |
| tree | 4ed767add286119a638c6d2bfad3617b97fb3f4f /usr.sbin/pkg_install | |
| parent | de2c92bf40db91c4bdf786f24ae1f52ab72929dc (diff) | |
Notes
Diffstat (limited to 'usr.sbin/pkg_install')
| -rw-r--r-- | usr.sbin/pkg_install/info/show.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/pkg_install/info/show.c b/usr.sbin/pkg_install/info/show.c index 57ed4e888eea..9c00a7e5bb31 100644 --- a/usr.sbin/pkg_install/info/show.c +++ b/usr.sbin/pkg_install/info/show.c @@ -1,6 +1,6 @@ #ifndef lint static const char rcsid[] = - "$Id: show.c,v 1.10 1997/02/22 16:09:43 peter Exp $"; + "$Id: show.c,v 1.11 1997/10/08 07:47:38 charnier Exp $"; #endif /* @@ -105,6 +105,10 @@ show_plist(char *title, Package *plist, plist_t type) printf(Quiet ? "@exec %s\n" : "\tEXEC '%s'\n", p->name); break; + case PLIST_UNEXEC: + printf(Quiet ? "@unexec %s\n" : "\tUNEXEC '%s'\n", p->name); + break; + case PLIST_CHMOD: printf(Quiet ? "@chmod %s\n" : "\tCHMOD to %s\n", p->name ? p->name : "(clear default)"); |
