diff --git a/changes.txt b/changes.txt index 6b26c6d..f7cc2af 100644 --- a/changes.txt +++ b/changes.txt @@ -1,3 +1,13 @@ +Version ???: + Feature: Redesigned ipxconfig UI. + + Cleanup: Use wrapper function to read registry values in ipxconfig. + + Bugfix: Only create registry key when saving configuration. + + Bugfix: Correctly order interfaces when first interface has the force + primary flag set. + Version 0.2.1: Bugfix: Delay stub DLL LoadLibrary calls until first API call as using LoadLibrary in DllMain crashes under some conditions. diff --git a/src/ipxwrapper.c b/src/ipxwrapper.c index 7eabcd4..d71351c 100644 --- a/src/ipxwrapper.c +++ b/src/ipxwrapper.c @@ -498,6 +498,10 @@ static BOOL load_nics(void) { /* Force primary flag set, insert at start of NIC list */ nnic->next = nics; nics = nnic; + + if(!enic) { + enic = nnic; + } }else if(enic) { enic->next = nnic; enic = nnic;