From: Ezra Peisach Date: Sat, 29 Apr 1995 17:18:42 +0000 (+0000) Subject: Remove the unused argument to aggree with the expected calling X-Git-Tag: krb5-1.0-beta5~93 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0a0c9ec8f3de4d92e52e674fb9322b59f9f99038;p=krb5.git Remove the unused argument to aggree with the expected calling prototype from main. (fixes coredump in dejagnu tests) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5660 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/kadmin.old/client/ChangeLog b/src/kadmin.old/client/ChangeLog index cf1c5c98c..c4f9cd2ee 100644 --- a/src/kadmin.old/client/ChangeLog +++ b/src/kadmin.old/client/ChangeLog @@ -1,106 +1,12 @@ -Fri Apr 28 21:15:47 1995 Theodore Y. Ts'o +Sat Apr 29 12:47:55 1995 Ezra Peisach - * kadmin.c (main): Don't free the credentials cache twice in case - of an error! + * kadmin_done.c (kadm_done): Removed unused argument to match call + from main. - * Makefile.in (kadmin): Use $(LD) instead of $(CC) so that we can - do purify checking. + * kadmin_cpr.c (kadm_cpw_user_rnd): Remove unsed argument to match + call from main. -Thu Apr 20 18:18:48 1995 Mark Eichin - - Changes from Ian Taylor to support testsuite. - Support -p port argument to kadmin client. - * kadmin.c (main): parse -p argument. - (adm5_init_link): new port argument, use it in preference to - getservbyname. - (usage): document new -p argument. - -Thu Apr 20 11:45:10 1995 - - * kadmin.c, kadmin_add.c, kadmin_adr.c, kadmin_cpr.c kadmin_cpw.c, - kadmin_del.c, kadmin_done.c, kadmin_inq.c, kadmin_mod.c, - kadmin_msnd.c: Add include of adm_defs.h, since that's no longer - included by krb5.h. - -Fri Mar 17 15:36:07 1995 Chris Provenzano (proven@mit.edu) - - * kadmin_inq.c, kadmin.c: - Cast malloc() return value to shut compiler up. - -Fri Mar 10 11:09:34 1995 Chris Provenzano (proven@mit.edu) - - * kadmin.c, kadmin_adr.c, kadmin_cpw.c, kadmin_done.c, kadmin_mod.c - * kadmin_add.c, kadmin_cpr.c, kadmin_del.c, kadmin_inq.c, kadmin_msnd.c - Use new calling convention for krb5_sendauth(), krb5_mk_priv(), - krb5_rd_priv(), krb5_mk_safe(), and krb5_rd_safe(). - -Thu Mar 2 12:24:25 1995 Theodore Y. Ts'o - - * Makefile.in (ISODELIB): Remove reference to $(ISODELIB). - -Wed Mar 1 16:29:19 1995 Theodore Y. Ts'o - - * configure.in: Remove ISODE_INCLUDE, replace check for -lsocket - and -lnsl with WITH_NETLIB check. - -Tue Feb 28 02:18:37 1995 John Gilmore (gnu at toad.com) - - * *.c: Avoid and includes. - -Tue Feb 14 15:30:55 1995 Chris Provenzano (proven@mit.edu) - - * kadmin.c Call krb5_sendauth() with new calling convention - -Fri Feb 10 17:50:39 1995 Theodore Y. Ts'o - - * kadmin_msnd.c: Remove needless #include of - -Mon Feb 06 17:19:04 1995 Chris Provenzano (proven@mit.edu) - - * kadmin.c: Removed krb5_keytype, changed krb5_enctype to - krb5_enctype *, changed krb5_preauthtype to krb5_preauthtype * - for krb5_get_in_tkt_with_password() rotuine. - -Fri Feb 3 03:03:27 1995 John Gilmore - - * kadmin.c (main): Real live non-kludged argument parsing. - Add -c option to specify ticket cache location (it really - should just use a cache in memory in the process, but that - isn't written yet). Make some error messages more explicit! - -Wed Jan 25 16:54:40 1995 Chris Provenzano (proven@mit.edu) - - * Removed all narrow types and references to wide.h and narrow.h - -Fri Jan 13 15:23:47 1995 Chris Provenzano (proven@mit.edu) - - * Added krb5_context to all krb5_routines - -Mon Oct 3 19:12:43 1994 Theodore Y. Ts'o (tytso@dcl) - - * Makefile.in: Use $(srcdir) to find manual page for make install. - -Thu Sep 29 22:39:10 1994 Theodore Y. Ts'o (tytso@dcl) - - * Makefile.in: relink executable if libraries change - -Thu Sep 15 16:49:19 1994 Theodore Y. Ts'o (tytso@dcl) - - * kadm_add.c (kadm_add_user): Don't chop off last character of - principal if it was supplied by the caller (instead of - prompting the user to enter a principal). - -Wed Sep 14 22:20:46 1994 Theodore Y. Ts'o (tytso@dcl) - - * kadmin_add.c (kadm_add_user): removed a duplicated - free(inbuf.data) call. - -Sat Jul 16 02:47:38 1994 Tom Yu (tlyu at dragons-lair) - - * kadmin.c (get_first_ticket): change error code to match - -Fri Jun 24 22:48:29 1994 Theodore Y. Ts'o (tytso at tsx-11) - - * kadmin_done (kadm_done): fix memory allocation bugs + * kadmin_adr.c (kadm_add_user_rnd): Remove unused arguments to + match calling convention. diff --git a/src/kadmin.old/client/kadmin_adr.c b/src/kadmin.old/client/kadmin_adr.c index 9a4cea7f8..49c871086 100644 --- a/src/kadmin.old/client/kadmin_adr.c +++ b/src/kadmin.old/client/kadmin_adr.c @@ -38,11 +38,10 @@ int print_status_message(); krb5_error_code kadm_add_user_rnd(context, auth_context, my_creds, - local_socket, seqno, principal) + local_socket, principal) krb5_context context; krb5_auth_context *auth_context; int *local_socket; - krb5_int32 *seqno; char *principal; { krb5_data msg_data, inbuf; diff --git a/src/kadmin.old/client/kadmin_cpr.c b/src/kadmin.old/client/kadmin_cpr.c index ee0b946b6..0752ca236 100644 --- a/src/kadmin.old/client/kadmin_cpr.c +++ b/src/kadmin.old/client/kadmin_cpr.c @@ -39,11 +39,10 @@ int print_status_message(); krb5_error_code kadm_cpw_user_rnd(context, auth_context, my_creds, - local_socket, seqno, principal) + local_socket, principal) krb5_context context; krb5_auth_context *auth_context; int *local_socket; - krb5_int32 *seqno; char *principal; { krb5_data msg_data, inbuf; diff --git a/src/kadmin.old/client/kadmin_done.c b/src/kadmin.old/client/kadmin_done.c index 7f3f7bb94..05e837ec6 100644 --- a/src/kadmin.old/client/kadmin_done.c +++ b/src/kadmin.old/client/kadmin_done.c @@ -32,11 +32,10 @@ #include "adm_defs.h" krb5_error_code -kadm_done(context, auth_context, my_creds, local_socket, seqno) +kadm_done(context, auth_context, my_creds, local_socket) krb5_context context; krb5_auth_context *auth_context; int *local_socket; - krb5_int32 *seqno; { krb5_replay_data replaydata; krb5_data msg_data, inbuf;