* plugins.c (FILEEXTS): No trailing semicolon
authorKen Raeburn <raeburn@mit.edu>
Fri, 5 May 2006 03:32:54 +0000 (03:32 +0000)
committerKen Raeburn <raeburn@mit.edu>
Fri, 5 May 2006 03:32:54 +0000 (03:32 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17979 dc483132-0cff-0310-8789-dd5450dbe970

src/util/support/plugins.c

index 929d94fa4f6d4308fed698e0d9fc87da73e750c1..43c319cdef23c18af6d38cdff0f3ad129e4465df 100644 (file)
@@ -334,9 +334,9 @@ krb5int_plugin_file_handle_array_free (struct plugin_file_handle **harray)
 #if TARGET_OS_MAC
 #define FILEEXTS { "", ".bundle", ".so", NULL }
 #elif defined(_WIN32)
-#define FILEEXTS  { "", ".dll", NULL };
+#define FILEEXTS  { "", ".dll", NULL }
 #else
-#define FILEEXTS  { "", ".so", NULL };
+#define FILEEXTS  { "", ".so", NULL }
 #endif