• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/apps/

Lines Matching defs:to

7  * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
78 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
760 /* We sort of have to do it this way because it is sort of nice
761 * to read the header first and check it, then
762 * try to read the certificate */
815 BIO_printf(err,"unable to load certificate\n");
897 BIO_printf(err,"unable to load %s\n", key_descrip);
967 BIO_printf(err,"unable to load %s\n", key_descrip);
1079 BIO_printf(err,"unable to load certificates\n");
1313 /* Try to load an engine in a shareable library */
1476 BIO_printf(bio_err,"unable to load number from %s\n",
1483 BIO_printf(bio_err,"error converting number from bin to BIGNUM\n");
1544 BIO_printf(bio_err,"error converting serial to ASN.1 format\n");
1601 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1607 "unable to rename %s to %s\n",
1614 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1620 "unable to rename %s to %s\n",
1675 BIO_printf(bio_err,"unable to open '%s'\n",dbfile);
1817 BIO_printf(bio_err,"unable to open '%s'\n", dbfile);
1832 BIO_printf(bio_err,"unable to open '%s'\n", buf[2]);
1903 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1909 "unable to rename %s to %s\n",
1916 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1922 "unable to rename %s to %s\n",
1939 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1945 "unable to rename %s to %s\n",
1954 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1960 "unable to rename %s to %s\n",
1984 int WIN32_rename(char *from, char *to)
1987 /* Windows rename gives an error if 'to' exists, so delete it
1990 if((remove(to) != 0) && (errno != ENOENT))
1993 return rename(from, to);
1995 /* convert strings to UNICODE */
2002 wto = malloc((strlen(to)+1)*2);
2007 for (i=0; i<(int)strlen(to)+1; i++)
2008 wto[i] = (short)to[i];