Deleted Added
full compact
main.c (157808) main.c (159554)
1/*
2 * FreeBSD install - a package for the installation and maintainance
3 * of non-core utilities.
4 *
5 * Jordan K. Hubbard
6 * 18 July 1993
7 *
8 * This is the create module.
9 *
10 */
11
12#include <sys/cdefs.h>
1/*
2 * FreeBSD install - a package for the installation and maintainance
3 * of non-core utilities.
4 *
5 * Jordan K. Hubbard
6 * 18 July 1993
7 *
8 * This is the create module.
9 *
10 */
11
12#include <sys/cdefs.h>
13__FBSDID("$FreeBSD: head/usr.sbin/pkg_install/create/main.c 157808 2006-04-17 10:58:45Z krion $");
13__FBSDID("$FreeBSD: head/usr.sbin/pkg_install/create/main.c 159554 2006-06-12 22:39:32Z obrien $");
14
15#include <err.h>
16#include "lib.h"
17#include "create.h"
18
19static char Options[] = "EGYNORhjvxyzf:p:P:C:c:d:i:I:k:K:r:t:X:D:m:s:S:o:b:";
20
21match_t MatchType = MATCH_GLOB;

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

55{
56 int ch;
57 char **pkgs, **start, *tmp;
58
59 pkgs = start = argv;
60 while ((ch = getopt(argc, argv, Options)) != -1)
61 switch(ch) {
62 case 'v':
14
15#include <err.h>
16#include "lib.h"
17#include "create.h"
18
19static char Options[] = "EGYNORhjvxyzf:p:P:C:c:d:i:I:k:K:r:t:X:D:m:s:S:o:b:";
20
21match_t MatchType = MATCH_GLOB;

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

55{
56 int ch;
57 char **pkgs, **start, *tmp;
58
59 pkgs = start = argv;
60 while ((ch = getopt(argc, argv, Options)) != -1)
61 switch(ch) {
62 case 'v':
63 Verbose = TRUE;
63 Verbose++;
64 break;
65
66 case 'x':
67 MatchType = MATCH_REGEX;
68 break;
69
70 case 'E':
71 MatchType = MATCH_EREGEX;

--- 168 unchanged lines hidden ---
64 break;
65
66 case 'x':
67 MatchType = MATCH_REGEX;
68 break;
69
70 case 'E':
71 MatchType = MATCH_EREGEX;

--- 168 unchanged lines hidden ---