* krb5.hin: Do not use "random_key" as argument name. When krb.h
authorEzra Peisach <epeisach@mit.edu>
Fri, 22 Jun 2001 18:19:55 +0000 (18:19 +0000)
committerEzra Peisach <epeisach@mit.edu>
Fri, 22 Jun 2001 18:19:55 +0000 (18:19 +0000)
        included, it gets redefined. Do not use "options" either.

        * k5-int.h (krb5_get_init_creds): Do not use "options" as argument
        name.

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

src/include/ChangeLog
src/include/k5-int.h
src/include/krb5.hin

index 6455c795015e20d05d39dfc3b1829545f0bd1260..95f91e7ba2315ac29f1a70ab6393aa927f42aa1f 100644 (file)
@@ -1,3 +1,11 @@
+2001-06-22  Ezra Peisach  <epeisach@mit.edu>
+
+       * krb5.hin: Do not use "random_key" as argument name. When krb.h
+       included, it gets redefined. Do not use "options" either.
+
+       * k5-int.h (krb5_get_init_creds): Do not use "options" as argument
+       name.
+
 2001-06-20  Ezra Peisach  <epeisach@mit.edu>
 
        * krb5.hin: Move prototypes for krb5_net_read() and
index 53aca1215ba79bd2119b9b8e810ebf34ed382fc1..2079c275cc795ef583329bb13cecc7649bf053ab 100644 (file)
@@ -960,7 +960,7 @@ krb5_get_init_creds
                void *prompter_data,
                krb5_deltat start_time,
                char *in_tkt_service,
-               krb5_get_init_creds_opt *options,
+               krb5_get_init_creds_opt *gic_options,
                krb5_gic_get_as_key_fct gak,
                void *gak_data,
                int master,
index 140f3a3b44d8e303f4909d0e9725b5d5f704e9f4..242afe2207d95ec6b3b43682abe0c397750e8eb7 100644 (file)
@@ -397,7 +397,7 @@ KRB5_DLLIMP krb5_error_code KRB5_CALLCONV
 KRB5_DLLIMP krb5_error_code KRB5_CALLCONV
     krb5_c_make_random_key
     (krb5_context context, krb5_enctype enctype,
-                   krb5_keyblock *random_key);
+                   krb5_keyblock *k5_random_key);
 
 KRB5_DLLIMP krb5_error_code KRB5_CALLCONV
     krb5_c_random_make_octets
@@ -2280,7 +2280,7 @@ krb5_get_init_creds_password
                void *data,
                krb5_deltat start_time,
                char *in_tkt_service,
-               krb5_get_init_creds_opt *options);
+               krb5_get_init_creds_opt *k5_gic_options);
 
 KRB5_DLLIMP krb5_error_code KRB5_CALLCONV
 krb5_get_init_creds_keytab
@@ -2290,7 +2290,7 @@ krb5_get_init_creds_keytab
                krb5_keytab arg_keytab,
                krb5_deltat start_time,
                char *in_tkt_service,
-               krb5_get_init_creds_opt *options);
+               krb5_get_init_creds_opt *k5_gic_options);
 
 typedef struct _krb5_verify_init_creds_opt {
     krb5_flags flags;
@@ -2301,10 +2301,10 @@ typedef struct _krb5_verify_init_creds_opt {
 
 KRB5_DLLIMP void KRB5_CALLCONV
 krb5_verify_init_creds_opt_init
-(krb5_verify_init_creds_opt *options);
+(krb5_verify_init_creds_opt *k5_vic_options);
 KRB5_DLLIMP void KRB5_CALLCONV
 krb5_verify_init_creds_opt_set_ap_req_nofail
-(krb5_verify_init_creds_opt *options,
+(krb5_verify_init_creds_opt *k5_vic_options,
                int ap_req_nofail);
 
 KRB5_DLLIMP krb5_error_code KRB5_CALLCONV
@@ -2314,7 +2314,7 @@ krb5_verify_init_creds
                krb5_principal ap_req_server,
                krb5_keytab ap_req_keytab,
                krb5_ccache *ccache,
-               krb5_verify_init_creds_opt *options);
+               krb5_verify_init_creds_opt *k5_vic_options);
 
 KRB5_DLLIMP krb5_error_code KRB5_CALLCONV
 krb5_get_validated_creds