Home | History | Annotate | Download | only in apps

Lines Matching refs:outdir

169 " -outdir dir     - Where to put output certificates\n",
275 char *outdir=NULL;
433 else if (strcmp(*argv,"-outdir") == 0)
436 outdir= *(++argv);
834 if ((outdir == NULL) && (req))
837 if ((outdir=NCONF_get_string(conf,section,ENV_NEW_CERTS_DIR))
844 /* outdir is a directory spec, but access() for VMS demands a
846 if outdir is not a directory spec, and the fopen() or open()
855 if (access(outdir,R_OK|W_OK|X_OK) != 0)
857 if (_access(outdir,R_OK|W_OK|X_OK) != 0)
860 BIO_printf(bio_err,"I am unable to access the %s directory\n",outdir);
861 perror(outdir);
865 if (app_isdir(outdir)<=0)
867 BIO_printf(bio_err,"%s need to be a directory\n",outdir);
868 perror(outdir);
1298 if(strlen(outdir) >= (size_t)(j ? BSIZE-j*2-6 : BSIZE-8))
1304 strcpy(buf[2],outdir);