Deleted Added
full compact
main.c (179835) main.c (180361)
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 179835 2008-06-16 23:41:11Z flz $");
13__FBSDID("$FreeBSD: head/usr.sbin/pkg_install/create/main.c 180361 2008-07-08 03:21:05Z keramida $");
14
15#include <getopt.h>
16#include <err.h>
17
18#include "lib.h"
19#include "create.h"
20
21match_t MatchType = MATCH_GLOB;

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

203 }
204 }
205 break;
206
207 case 'R':
208 Recursive = TRUE;
209 break;
210
14
15#include <getopt.h>
16#include <err.h>
17
18#include "lib.h"
19#include "create.h"
20
21match_t MatchType = MATCH_GLOB;

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

203 }
204 }
205 break;
206
207 case 'R':
208 Recursive = TRUE;
209 break;
210
211 case 'n':
212 Regenerate = FALSE;
213 break;
214
211 case 0:
212 if (Help)
213 usage();
214 break;
215
216 default:
217 usage();
218 break;

--- 41 unchanged lines hidden ---
215 case 0:
216 if (Help)
217 usage();
218 break;
219
220 default:
221 usage();
222 break;

--- 41 unchanged lines hidden ---