Commit 7dd3f7c7 authored by Alexandre Julliard's avatar Alexandre Julliard

Silently ignore 'so' loadorder in the config file instead of

displaying an error.
parent 50149af8
...@@ -453,6 +453,7 @@ static BOOL get_registry_value( HKEY hkey, const char *module, enum loadorder_ty ...@@ -453,6 +453,7 @@ static BOOL get_registry_value( HKEY hkey, const char *module, enum loadorder_ty
{ {
case 'n': type = LOADORDER_DLL; break; case 'n': type = LOADORDER_DLL; break;
case 'b': type = LOADORDER_BI; break; case 'b': type = LOADORDER_BI; break;
case 's': break; /* no longer supported, ignore */
case 0: break; /* end of string */ case 0: break; /* end of string */
default: default:
ERR("Invalid load order module-type %s, ignored\n", debugstr_w(str)); ERR("Invalid load order module-type %s, ignored\n", debugstr_w(str));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment