default to pppc.ini if a config file was not supplied

git-svn-id: http://apu.dw.local/svnusers/JoshHoltrop/pppc/trunk@66 8131a0b2-b21c-1c47-bd6a-f003126495bd
This commit is contained in:
joshholtrop 2009-09-15 19:15:03 +00:00
parent e9c85c729e
commit 5fad78115b

View File

@ -41,6 +41,11 @@ int WinMain(
}
}
if (config_file == NULL)
{
config_file = "pppc.ini";
}
PPPC myPPPC(hInstance, config_file);
return myPPPC.mainLoop();