From 67081b64c9794550315bcd24bb8ecf8431cd260e Mon Sep 17 00:00:00 2001 From: James Peterson Date: Thu, 20 Sep 2001 00:18:54 +0000 Subject: [PATCH] winnt-dont-do-unneeded-version-check-20010918 make afs config wizard not complain about version < 3.5 --- src/WINNT/afssvrcfg/afscfg.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/WINNT/afssvrcfg/afscfg.cpp b/src/WINNT/afssvrcfg/afscfg.cpp index 2420915..2f41449 100644 --- a/src/WINNT/afssvrcfg/afscfg.cpp +++ b/src/WINNT/afssvrcfg/afscfg.cpp @@ -180,16 +180,6 @@ int WINAPI WinMain (HINSTANCE hInst, HINSTANCE hPrev, LPSTR pszCmdLineA, int nCm return 0; } - // Check the version of the client. It must be at least 35. - if (g_CfgData.nClientVersion < 35) { - int nMajor, nMinor; - nMajor = g_CfgData.nClientVersion / 10; - nMinor = g_CfgData.nClientVersion - (nMajor * 10); - g_LogFile.Write("The version of the AFS Client on this machine (%d.%d) is too old to run the server. The Client must be at least version 3.5.\r\n", nMajor, nMinor); - ErrorDialog(0, IDS_ERROR_CLIENT_VERSION); - return 0; - } - // Run the appropriate interface if ((strstr(_strlwr(pszCmdLineA), "wizard") != 0)) RunWizard(); -- 1.9.4