From 015232bd394367b8422b69222847e622a45b3714 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 24 Aug 2004 20:48:22 +0000 Subject: As far as I can tell, CONFIG_LEGAL_FILENAME_CHARACTERS is both pointless and broken. #if it out, pending agreement from arma. This fixes a bug on win32 that rejected paths with a : in them. svn:r2309 --- src/common/crypto.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/common/crypto.c') diff --git a/src/common/crypto.c b/src/common/crypto.c index 6a9dc348e..4339e8c75 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -344,10 +344,12 @@ int crypto_pk_read_private_key_from_filename(crypto_pk_env_t *env, const char *k tor_assert(env && keyfile); +#if 0 if(strspn(keyfile,CONFIG_LEGAL_FILENAME_CHARACTERS) != strlen(keyfile)) { /* filename contains nonlegal characters */ return -1; } +#endif /* open the keyfile */ f_pr=fopen(keyfile,"rb"); -- cgit v1.2.3