Removed making commandline arguments case insensitive

This commit is contained in:
Paul Bakker 2013-11-30 15:13:02 +01:00
parent a8239a4490
commit c97f9f6465
6 changed files with 6 additions and 51 deletions

View file

@ -183,7 +183,7 @@ int main( int argc, char *argv[] )
*subject_key = &loaded_subject_key;
char buf[1024];
char issuer_name[128];
int i, j, n;
int i;
char *p, *q, *r;
#if defined(POLARSSL_X509_CSR_PARSE_C)
char subject_name[128];
@ -244,13 +244,6 @@ int main( int argc, char *argv[] )
goto usage;
*q++ = '\0';
n = strlen( p );
for( j = 0; j < n; j++ )
{
if( argv[i][j] >= 'A' && argv[i][j] <= 'Z' )
argv[i][j] |= 0x20;
}
if( strcmp( p, "request_file" ) == 0 )
opt.request_file = q;
else if( strcmp( p, "subject_key" ) == 0 )