Home | History | Annotate | Download | only in apps

Lines Matching refs:outdir

169 " -outdir dir     - Where to put output certificates\n",
279 char *outdir=NULL;
438 else if (strcmp(*argv,"-outdir") == 0)
441 outdir= *(++argv);
848 if ((outdir == NULL) && (req))
851 if ((outdir=NCONF_get_string(conf,section,ENV_NEW_CERTS_DIR))
858 /* outdir is a directory spec, but access() for VMS demands a
860 if outdir is not a directory spec, and the fopen() or open()
869 if (access(outdir,R_OK|W_OK|X_OK) != 0)
871 if (_access(outdir,R_OK|W_OK|X_OK) != 0)
874 BIO_printf(bio_err,"I am unable to access the %s directory\n",outdir);
875 perror(outdir);
879 if (app_isdir(outdir)<=0)
881 BIO_printf(bio_err,"%s need to be a directory\n",outdir);
882 perror(outdir);
1314 if(strlen(outdir) >= (size_t)(j ? BSIZE-j*2-6 : BSIZE-8))
1320 strcpy(buf[2],outdir);