Deleted Added
full compact
main.c (154145) main.c (159554)
1/*
2 *
3 * FreeBSD install - a package for the installation and maintainance
4 * of non-core utilities.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

15 * Jordan K. Hubbard
16 * 18 July 1993
17 *
18 * This is the info module.
19 *
20 */
21
22#include <sys/cdefs.h>
1/*
2 *
3 * FreeBSD install - a package for the installation and maintainance
4 * of non-core utilities.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

15 * Jordan K. Hubbard
16 * 18 July 1993
17 *
18 * This is the info module.
19 *
20 */
21
22#include <sys/cdefs.h>
23__FBSDID("$FreeBSD: head/usr.sbin/pkg_install/info/main.c 154145 2006-01-09 18:27:21Z flz $");
23__FBSDID("$FreeBSD: head/usr.sbin/pkg_install/info/main.c 159554 2006-06-12 22:39:32Z obrien $");
24
25#include "lib.h"
26#include "info.h"
27#include <err.h>
28
29static char Options[] = "abcdDe:EfgGhiIjkKl:LmoO:pPqQrRst:vVW:xX";
30
31int Flags = 0;

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

64 MatchType = MATCH_ALL;
65 break;
66
67 case 'b':
68 UseBlkSz = TRUE;
69 break;
70
71 case 'v':
24
25#include "lib.h"
26#include "info.h"
27#include <err.h>
28
29static char Options[] = "abcdDe:EfgGhiIjkKl:LmoO:pPqQrRst:vVW:xX";
30
31int Flags = 0;

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

64 MatchType = MATCH_ALL;
65 break;
66
67 case 'b':
68 UseBlkSz = TRUE;
69 break;
70
71 case 'v':
72 Verbose = TRUE;
72 Verbose++;
73 /* Reasonable definition of 'everything' */
74 Flags = SHOW_COMMENT | SHOW_DESC | SHOW_PLIST | SHOW_INSTALL |
75 SHOW_DEINSTALL | SHOW_REQUIRE | SHOW_DISPLAY | SHOW_MTREE;
76 break;
77
78 case 'E':
79 Flags |= SHOW_PKGNAME;
80 break;

--- 195 unchanged lines hidden ---
73 /* Reasonable definition of 'everything' */
74 Flags = SHOW_COMMENT | SHOW_DESC | SHOW_PLIST | SHOW_INSTALL |
75 SHOW_DEINSTALL | SHOW_REQUIRE | SHOW_DISPLAY | SHOW_MTREE;
76 break;
77
78 case 'E':
79 Flags |= SHOW_PKGNAME;
80 break;

--- 195 unchanged lines hidden ---