Deleted Added
full compact
main.c (85002) main.c (85019)
1#ifndef lint
2static const char rcsid[] =
1#ifndef lint
2static const char rcsid[] =
3 "$FreeBSD: head/usr.sbin/pkg_install/create/main.c 85002 2001-10-15 18:21:08Z sobomax $";
3 "$FreeBSD: head/usr.sbin/pkg_install/create/main.c 85019 2001-10-16 03:04:15Z sobomax $";
4#endif
5
6/*
7 * FreeBSD install - a package for the installation and maintainance
8 * of non-core utilities.
9 *
10 * Jordan K. Hubbard
11 * 18 July 1993

--- 92 unchanged lines hidden (view full) ---

104 PostDeInstall = optarg;
105 break;
106
107 case 'r':
108 Require = optarg;
109 break;
110
111 case 't':
4#endif
5
6/*
7 * FreeBSD install - a package for the installation and maintainance
8 * of non-core utilities.
9 *
10 * Jordan K. Hubbard
11 * 18 July 1993

--- 92 unchanged lines hidden (view full) ---

104 PostDeInstall = optarg;
105 break;
106
107 case 'r':
108 Require = optarg;
109 break;
110
111 case 't':
112 strncpy(PlayPen, optarg, sizeof(PlayPen));
112 strlcpy(PlayPen, optarg, sizeof(PlayPen));
113 break;
114
115 case 'X':
116 ExcludeFrom = optarg;
117 break;
118
119 case 'h':
120 Dereference = TRUE;

--- 81 unchanged lines hidden ---
113 break;
114
115 case 'X':
116 ExcludeFrom = optarg;
117 break;
118
119 case 'h':
120 Dereference = TRUE;

--- 81 unchanged lines hidden ---