diff options
author | Ken Raeburn <raeburn@mit.edu> | 2006-05-05 03:32:54 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@mit.edu> | 2006-05-05 03:32:54 +0000 |
commit | c69547d9573bcbeaaa191f73f76b420184491c4a (patch) | |
tree | aa23b467753a27db4f7d55757a3e97ae62361dbd | |
parent | 3954b6dc2253b6a0f396b3193ae60539f5e48c19 (diff) | |
download | krb5-c69547d9573bcbeaaa191f73f76b420184491c4a.tar.gz krb5-c69547d9573bcbeaaa191f73f76b420184491c4a.tar.xz krb5-c69547d9573bcbeaaa191f73f76b420184491c4a.zip |
* plugins.c (FILEEXTS): No trailing semicolon
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17979 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r-- | src/util/support/plugins.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/support/plugins.c b/src/util/support/plugins.c index 929d94fa4..43c319cde 100644 --- a/src/util/support/plugins.c +++ b/src/util/support/plugins.c @@ -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 |