From a882971606dd0be2e3520f23018ebf3fc48a7ff6 Mon Sep 17 00:00:00 2001 From: Love Hornquist Astrand Date: Sun, 22 Nov 2009 13:58:42 -0800 Subject: [PATCH] remove unused vars --- lib/krb5/config_file.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/krb5/config_file.c b/lib/krb5/config_file.c index 8453c90b2..f1429edeb 100644 --- a/lib/krb5/config_file.c +++ b/lib/krb5/config_file.c @@ -267,7 +267,7 @@ static void convert_content(const void *key, const void *value, void *context) { krb5_config_section *tmp, **parent = context; - char *k, *v; + char *k; if (CFGetTypeID(key) != CFStringGetTypeID()) return; @@ -295,7 +295,6 @@ parse_plist_config(krb5_context context, const char *path, krb5_config_section * CFDictionaryRef d; CFErrorRef e; CFURLRef url; - CFDataRef p; url = CFURLCreateFromFileSystemRepresentation(kCFAllocatorDefault, (UInt8 *)path, strlen(path), FALSE); if (url == NULL) {