Commit 8bab6772 authored by Jan Kiene's avatar Jan Kiene
Browse files

set arg->ca_config_file to original string from cmdline

was set to ALL CAPS VERSION of it before which breaks functionality for
case-sensitive filesystems
parent 0c0f9370
Loading
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1049,6 +1049,8 @@ static bool parseCmdlIVAS_enc(

            if ( i < argc - 4 )
            {
                strncpy( stmp, argv[i], sizeof( stmp ) );

                to_upper( argv[i] );
                if ( strcmp( argv[i], "LO" ) == 0 )
                {
@@ -1060,7 +1062,7 @@ static bool parseCmdlIVAS_enc(
                }
                else
                {
                    arg->ca_config_file = argv[i];
                    arg->ca_config_file = stmp;
                }
                i++;