From: Jeffrey Altman Date: Fri, 14 Apr 2006 02:48:45 +0000 (+0000) Subject: identity/plugins/common/dynimport.c: X-Git-Tag: krb5-1.5-alpha1~82 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ca528fbea27b0d8d42c5f2802e15b507c4da945;p=thirdparty%2Fkrb5.git identity/plugins/common/dynimport.c: During the interop session we concluded that the ccapi32.dll should not be required for netidmgr to operate. netidmgr should work with only FILE: ccaches. After the interop the removal of the error check post-load was not removed. identity/doc/Makefile: The 'clean' rules failed to specify the /Q switch which silently removes the directory tree. As a result, during the build the user was prompted. ticket: 3542 status: open git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17907 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/windows/identity/doc/Makefile b/src/windows/identity/doc/Makefile index fe2d91919c..85003999e2 100644 --- a/src/windows/identity/doc/Makefile +++ b/src/windows/identity/doc/Makefile @@ -64,5 +64,5 @@ CHM_FILE = "$(DOCDIR)\netiddev.chm" -$(HHC) $(DOCDIR)\html\index.hhp clean:: - $(RMDIR) /s $(DOCDIR)\html + $(RMDIR) /s /q $(DOCDIR)\html $(RM) $(DOCDIR)\*.* diff --git a/src/windows/identity/plugins/common/dynimport.c b/src/windows/identity/plugins/common/dynimport.c index 7eecc75495..9c93213f3c 100644 --- a/src/windows/identity/plugins/common/dynimport.c +++ b/src/windows/identity/plugins/common/dynimport.c @@ -388,7 +388,7 @@ khm_int32 init_imports(void) { CKRV; imp_rv = LoadFuncs(CCAPI_DLL, ccapi_fi, &hCCAPI, 0, 1, 0, 0); - CKRV; + /* CCAPI_DLL is optional. No error check. */ memset(&osvi, 0, sizeof(OSVERSIONINFO)); osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);