From: Tom Yu Date: Wed, 28 Jun 2006 23:41:30 +0000 (+0000) Subject: pull up r18248 from trunk X-Git-Tag: krb5-1.5-final~30 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=c2b227bd2cb84fb5609c3a8b6e9f97cfcb873ee7;p=krb5.git pull up r18248 from trunk r18248@cathode-dark-space: jaltman | 2006-06-28 17:45:20 -0400 ticket: new subject: fix plugin.c to compile on Windows tags: pullup plugins.c: Move a brace so that the Windows case falls within the conditional ticket: 3949 version_fixed: 1.5 git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-5@18252 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/util/support/plugins.c b/src/util/support/plugins.c index d0752e322..bccb52250 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) {