From c7253200813d614b1f244119559c53e7983931f2 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Thu, 25 Nov 1999 22:32:26 +0000 Subject: [PATCH] add `del_enctype' git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@7435 ec53bebd-3082-4978-b11e-865c3cabbd6b --- kadmin/kadmin.c | 4 ++++ kadmin/kadmin_locl.h | 1 + 2 files changed, 5 insertions(+) diff --git a/kadmin/kadmin.c b/kadmin/kadmin.c index 47e56f714..85415b7f6 100644 --- a/kadmin/kadmin.c +++ b/kadmin/kadmin.c @@ -120,6 +120,10 @@ static SL_cmd commands[] = { "Deletes all principals matching the expressions." }, { "del_entry" }, + { + "del_enctype", del_enctype, "del_enctype principal enctype...", + "Delete all the mentioned enctypes for principal." + }, { "ext_keytab", ext_keytab, "ext_keytab expression...", "Extracts the keys of all principals matching the expressions,\n" diff --git a/kadmin/kadmin_locl.h b/kadmin/kadmin_locl.h index 1c23b02cc..220804012 100644 --- a/kadmin/kadmin_locl.h +++ b/kadmin/kadmin_locl.h @@ -96,6 +96,7 @@ extern void * kadm_handle; DECL(add_new_key); DECL(cpw_entry); DECL(del_entry); +DECL(del_enctype); DECL(exit_kadmin); DECL(ext_keytab); DECL(get_entry);