summaryrefslogtreecommitdiffstats
path: root/src/windows/identity
diff options
context:
space:
mode:
authorJeffrey Altman <jaltman@secure-endpoints.com>2007-08-29 22:23:16 +0000
committerJeffrey Altman <jaltman@secure-endpoints.com>2007-08-29 22:23:16 +0000
commit0206706570d023965a0226a4fd644e8b6fea22c3 (patch)
treefee0dbc98d96d326a82638a7f6b03bf1b29c1c76 /src/windows/identity
parentf99763460fd2beb2aa87b870b1b10d8eee780b62 (diff)
downloadkrb5-0206706570d023965a0226a4fd644e8b6fea22c3.tar.gz
krb5-0206706570d023965a0226a4fd644e8b6fea22c3.tar.xz
krb5-0206706570d023965a0226a4fd644e8b6fea22c3.zip
NIM - a small readability change
Instead of testing for NOT the machine key, test for is the user key. ticket: new component: windows/identity/kconfig/api.c git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19896 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/windows/identity')
-rw-r--r--src/windows/identity/kconfig/api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windows/identity/kconfig/api.c b/src/windows/identity/kconfig/api.c
index f9cd64855..8317e6c9b 100644
--- a/src/windows/identity/kconfig/api.c
+++ b/src/windows/identity/kconfig/api.c
@@ -2069,7 +2069,7 @@ khc_remove_value(khm_handle conf, const wchar_t * value, khm_int32 flags) {
c = khc_space_from_handle(conf);
- if(!khc_is_machine_handle(conf))
+ if(khc_is_user_handle(conf))
hku = khcint_space_open_key(c, KHM_PERM_READ);
hkm = khcint_space_open_key(c, KHM_PERM_READ | KCONF_FLAG_MACHINE);