1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#include "system.h"
#include "rpmio_internal.h"
#include <popt.h>
#include "debug.h"
static int printing = 1;
static int _debug = 0;
int noNeon;
static struct poptOption optionsTable[] = {
{ "print", 'p', POPT_ARG_VAL, &printing, 1, NULL, NULL },
{ "noprint", 'n', POPT_ARG_VAL, &printing, 0, NULL, NULL },
{ "debug", 'd', POPT_ARG_VAL, &_debug, -1, NULL, NULL },
{ "rpmiodebug", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_rpmio_debug, -1,
N_("debug rpmio I/O"), NULL},
{ "urldebug", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_url_debug, -1,
N_("debug URL cache handling"), NULL},
{ "verbose", 'v', 0, 0, 'v', NULL, NULL },
POPT_AUTOHELP
POPT_TABLEEND
};
int
main (int argc, const char *argv[])
{
poptContext optCon = poptGetContext(argv[0], argc, argv, optionsTable, 0);
pgpDig dig;
const byte * pkt = NULL;
size_t pktlen;
const char ** args;
const char * fn;
int rc, ec = 0;
while ((rc = poptGetNextOpt(optCon)) > 0);
if ((args = poptGetArgs(optCon)) != NULL)
while ((fn = *args++) != NULL) {
pgpArmor pa;
pa = pgpReadPkts(fn, &pkt, &pktlen);
if (pa == PGPARMOR_ERROR
|| pa == PGPARMOR_NONE
|| pkt == NULL || pktlen <= 0)
{
ec++;
continue;
}
fprintf(stderr, "===================== %s\n", fn);
dig = xcalloc(1, sizeof(*dig));
(void) pgpPrtPkts(pkt, pktlen, dig, printing);
free((void *)pkt);
pkt = NULL;
free((void *)dig);
dig = NULL;
}
return ec;
}
|