diff options
author | Jeffrey Altman <jaltman@secure-endpoints.com> | 2006-06-28 21:45:20 +0000 |
---|---|---|
committer | Jeffrey Altman <jaltman@secure-endpoints.com> | 2006-06-28 21:45:20 +0000 |
commit | 30cbabc2918399d7419a2552f7a26ff4da0c070c (patch) | |
tree | 77a8215fb23a3bb838008cadfd04da913dbec06c | |
parent | c3d776897051ec477b40812679c9e751f7cc25c4 (diff) | |
download | krb5-30cbabc2918399d7419a2552f7a26ff4da0c070c.tar.gz krb5-30cbabc2918399d7419a2552f7a26ff4da0c070c.tar.xz krb5-30cbabc2918399d7419a2552f7a26ff4da0c070c.zip |
fix plugin.c to compile on Windows
plugins.c: Move a brace so that the Windows case falls
within the conditional
ticket: new
tags: pullup
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18248 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r-- | src/util/support/plugins.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/support/plugins.c b/src/util/support/plugins.c index d0752e3229..bccb522508 100644 --- a/src/util/support/plugins.c +++ b/src/util/support/plugins.c @@ -500,11 +500,11 @@ krb5int_open_plugin_dirs (const char * const *dirnames, } if (dir != NULL) { closedir (dir); } - } #else - /* Until a Windows implementation of this code is implemented */ - err = ENOENT; + /* Until a Windows implementation of this code is implemented */ + err = ENOENT; #endif /* _WIN32 */ + } } if (err == ENOENT) { |