Deleted Added
full compact
main.c (445) main.c (1337)
1#ifndef lint
1#ifndef lint
2static const char *rcsid = "$Id: main.c,v 1.4 1993/09/04 05:06:33 jkh Exp $";
2static const char *rcsid = "$Id: main.c,v 1.4 1993/09/12 20:45:29 jkh Exp $";
3#endif
4
5/*
6 * FreeBSD install - a package for the installation and maintainance
7 * of non-core utilities.
8 *
9 * Jordan K. Hubbard
10 * 18 July 1993

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

37
38 pkgs = start = argv;
39 while ((ch = getopt(argc, argv, Options)) != EOF)
40 switch(ch) {
41 case 'v':
42 Verbose = TRUE;
43 break;
44
3#endif
4
5/*
6 * FreeBSD install - a package for the installation and maintainance
7 * of non-core utilities.
8 *
9 * Jordan K. Hubbard
10 * 18 July 1993

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

37
38 pkgs = start = argv;
39 while ((ch = getopt(argc, argv, Options)) != EOF)
40 switch(ch) {
41 case 'v':
42 Verbose = TRUE;
43 break;
44
45 case 'N':
46 AutoAnswer = NO;
47 break;
48
49 case 'Y':
50 AutoAnswer = YES;
51 break;
52
45 case 'p':
46 Prefix = optarg;
47 break;
48
49 case 'f':
50 Contents = optarg;
51 break;
52

--- 85 unchanged lines hidden ---
53 case 'p':
54 Prefix = optarg;
55 break;
56
57 case 'f':
58 Contents = optarg;
59 break;
60

--- 85 unchanged lines hidden ---