From: Alexandra Ellwood Date: Wed, 15 Oct 2008 22:45:10 +0000 (+0000) Subject: remove unused variable in kim_ui_cli_ask_change_password X-Git-Tag: krb5-1.7-alpha1~303 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=63f8f103922bdc9b38eaaee54219a3eb55f54a0d;p=krb5.git remove unused variable in kim_ui_cli_ask_change_password ticket: new git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20877 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/kim/lib/kim_ui_cli.c b/src/kim/lib/kim_ui_cli.c index 173a7eb6e..922f386ee 100644 --- a/src/kim/lib/kim_ui_cli.c +++ b/src/kim/lib/kim_ui_cli.c @@ -255,7 +255,6 @@ static kim_error kim_ui_cli_ask_change_password (kim_string in_identity_string) { kim_error err = KIM_NO_ERROR; kim_string ask_change_password = NULL; - kim_string answer_options = NULL; kim_string yes = NULL; kim_string no = NULL; kim_string unknown_response = NULL; @@ -314,7 +313,6 @@ static kim_error kim_ui_cli_ask_change_password (kim_string in_identity_string) } kim_string_free (&ask_change_password); - kim_string_free (&answer_options); kim_string_free (&yes); kim_string_free (&no); kim_string_free (&unknown_response);