Home | History | Annotate | Download | only in apps

Lines Matching refs:argv

80 int MAIN(int argc, char **argv)
111 argv++;
116 if (strcmp(*argv,"-CApath") == 0)
119 CApath= *(++argv);
121 else if (strcmp(*argv,"-CAfile") == 0)
124 CAfile= *(++argv);
126 else if (args_verify(&argv, &argc, &badarg, bio_err,
133 else if (strcmp(*argv,"-untrusted") == 0)
136 untfile= *(++argv);
138 else if (strcmp(*argv,"-trusted") == 0)
141 trustfile= *(++argv);
143 else if (strcmp(*argv,"-CRLfile") == 0)
146 crlfile= *(++argv);
149 else if (strcmp(*argv,"-engine") == 0)
152 engine= *(++argv);
155 else if (strcmp(*argv,"-help") == 0)
157 else if (strcmp(*argv,"-verbose") == 0)
159 else if (argv[0][0] == '-')
164 argv++;
228 check(cert_ctx,argv[i], untrusted, trusted, crls, e);