From 88e892332063c950a7ceb0ee632fee6174da72c1 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Tue, 10 Jun 2008 21:43:41 +0000 Subject: Get rid of handling of set-but-unused kadm5_config_params.admin_lockfile git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20381 dc483132-0cff-0310-8789-dd5450dbe970 --- src/kadmin/testing/util/tcl_kadm5.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/kadmin/testing') diff --git a/src/kadmin/testing/util/tcl_kadm5.c b/src/kadmin/testing/util/tcl_kadm5.c index ebd3037a30..04a3795706 100644 --- a/src/kadmin/testing/util/tcl_kadm5.c +++ b/src/kadmin/testing/util/tcl_kadm5.c @@ -1042,11 +1042,7 @@ static int parse_config_params(Tcl_Interp *interp, char *list, retcode = TCL_ERROR; goto finished; } - if ((retcode = parse_str(interp, argv[6], ¶ms->admin_lockfile)) != TCL_OK) { - Tcl_AppendElement(interp, "while parsing admin_lockfile name"); - retcode = TCL_ERROR; - goto finished; - } + /* Ignore argv[6], which used to set the admin_lockfile field. */ if ((retcode = parse_str(interp, argv[7], ¶ms->admin_keytab)) != TCL_OK) { Tcl_AppendElement(interp, "while parsing admin_keytab name"); retcode = TCL_ERROR; -- cgit