From cd83b8a845d69a4ad890e03dc98958d6423c1012 Mon Sep 17 00:00:00 2001 From: stskeeps Date: Fri, 22 Nov 2002 21:04:40 +0000 Subject: [PATCH] - Fixed win32 compile error with default: ; --- Changes | 1 + src/auth.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 93c490c51..f3c9a873a 100644 --- a/Changes +++ b/Changes @@ -1672,3 +1672,4 @@ seen. gmtime warning still there completely new and works differently. All remnants of the old system have been removed. - Changed the module config system slightly to be able to detect more errors. - /rehash for conf3 (that works) :) +- Fixed win32 compile error with default: ; \ No newline at end of file diff --git a/src/auth.c b/src/auth.c index fff2d2398..00ca3a11a 100644 --- a/src/auth.c +++ b/src/auth.c @@ -139,7 +139,7 @@ int Auth_CheckError(ConfigEntry *ce) X509_free(x509_filecert); break; #endif - default: + default: ; } } }