From: Theodore Tso Date: Thu, 29 Feb 1996 21:50:45 +0000 (+0000) Subject: Make sure WSACleanup() is called when the DLL exits X-Git-Tag: krb5-1.0-beta6~425 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d174a15290a1b04aa50442e22587ec8b56f850c3;p=krb5.git Make sure WSACleanup() is called when the DLL exits git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7575 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/ChangeLog b/src/lib/ChangeLog index 026db2664..cc3227655 100644 --- a/src/lib/ChangeLog +++ b/src/lib/ChangeLog @@ -1,3 +1,7 @@ +Thu Feb 29 16:49:33 1996 Theodore Y. Ts'o + + * win_glue.c: Make sure WSACleanup() is called when the DLL exits. + Tue Feb 27 18:47:17 1996 Theodore Y. Ts'o * gssapi.def: We have implemented gss_inquire_names_for_mech, not diff --git a/src/lib/win_glue.c b/src/lib/win_glue.c index cb67a3626..40dbab9c7 100644 --- a/src/lib/win_glue.c +++ b/src/lib/win_glue.c @@ -50,5 +50,6 @@ int CALLBACK __export WEP(nParam) int nParam; { + WSACleanup(); return 1; }