krb5int_populate_gic_opt should return void
authorSam Hartman <hartmans@mit.edu>
Thu, 22 May 2003 17:09:52 +0000 (17:09 +0000)
committerSam Hartman <hartmans@mit.edu>
Thu, 22 May 2003 17:09:52 +0000 (17:09 +0000)
Since none of the functions it calls can return an error, this should
return void.

Ticket: new
Target_Version: 1.3
Tags: pullup

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15465 dc483132-0cff-0310-8789-dd5450dbe970

src/include/ChangeLog
src/include/k5-int.h
src/lib/krb5/krb/ChangeLog
src/lib/krb5/krb/gic_pwd.c

index af9217efdda3ca11af51998baccb5ea3ea5fe3de..55ec2fee86dd2a4cd4851f7e2de82c54aef0d0f6 100644 (file)
@@ -1,3 +1,7 @@
+2003-05-22  Sam Hartman  <hartmans@mit.edu>
+
+       * k5-int.h: krb5int_populate_gic_opt returns void
+
 2003-05-19  Sam Hartman  <hartmans@mit.edu>
 
        * k5-int.h: Prototype krb5int_populate_gic_opt
index f9a15ef3a79d4418197f5bfbd4d29872f32aac64..1f49b236b491f4461b00d181961af832d5b88cd2 100644 (file)
@@ -935,7 +935,7 @@ krb5_get_init_creds
                int master,
                krb5_kdc_rep **as_reply);
 
-krb5_error_code krb5int_populate_gic_opt (
+void krb5int_populate_gic_opt (
     krb5_context, krb5_get_init_creds_opt *,
     krb5_flags options, krb5_address * const *addrs, krb5_enctype *ktypes,
     krb5_preauthtype *pre_auth_types);
index 0802d0e344c71ad0a2a445dd5e714ffc36348be4..42010819a1624d2a9d82bdf67513877630c1e50d 100644 (file)
@@ -1,3 +1,7 @@
+2003-05-22  Sam Hartman  <hartmans@mit.edu>
+
+       * gic_pwd.c (krb5int_populate_gic_opt): returns void
+
 2003-05-21  Tom Yu  <tlyu@mit.edu>
 
        * gic_pwd.c (krb5_get_in_tkt_with_password): Set pw0.length
index 1d373f50866817b96e3ab8528619a94e5328f163..fb5a40973076d961b417c5bbeac62c268fdba282 100644 (file)
@@ -368,7 +368,7 @@ cleanup:
 
    return(ret);
 }
-krb5_error_code krb5int_populate_gic_opt (
+void krb5int_populate_gic_opt (
     krb5_context context, krb5_get_init_creds_opt *opt,
     krb5_flags options, krb5_address * const *addrs, krb5_enctype *ktypes,
     krb5_preauthtype *pre_auth_types)