* preauth.c: Don't use PROTOTYPE macro, just always use the prototypes
authorKen Raeburn <raeburn@mit.edu>
Sat, 20 Jan 2001 04:16:01 +0000 (04:16 +0000)
committerKen Raeburn <raeburn@mit.edu>
Sat, 20 Jan 2001 04:16:01 +0000 (04:16 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12923 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/krb/ChangeLog
src/lib/krb5/krb/preauth.c

index d1b92df86c45617f39f10ab2d1494571525c20ae..169964c801d4e14131eb1bbd10ca8568015566f0 100644 (file)
@@ -1,3 +1,8 @@
+2001-01-19  Ken Raeburn  <raeburn@mit.edu>
+
+       * preauth.c: Don't use PROTOTYPE macro, just always use the
+       prototypes.
+
 2001-01-19  Tom Yu  <tlyu@mit.edu>
 
        * preauth.c: Remove uses of KRB5_NPROTOTYPE() macro.
index fd49bbfbafbfc1c72a6ae178536ce0c1f4d08f71..38aa820999def46e8616b1245b5474baf68d39bb 100644 (file)
@@ -121,20 +121,20 @@ static krb5_preauth_ops preauth_systems[] = {
 };
 
 static krb5_error_code find_pa_system
-    PROTOTYPE((krb5_preauthtype type, krb5_preauth_ops **Preauth_proc));
+    (krb5_preauthtype type, krb5_preauth_ops **Preauth_proc);
 
 /* some typedef's for the function args to make things look a bit cleaner */
 
-typedef krb5_error_code (*git_key_proc) PROTOTYPE((krb5_context,
-                                                  const krb5_enctype,
-                                                  krb5_data *,
-                                                  krb5_const_pointer,
-                                                  krb5_keyblock **));
+typedef krb5_error_code (*git_key_proc) (krb5_context,
+                                        const krb5_enctype,
+                                        krb5_data *,
+                                        krb5_const_pointer,
+                                        krb5_keyblock **);
 
-typedef krb5_error_code (*git_decrypt_proc) PROTOTYPE((krb5_context,
-                                                      const krb5_keyblock *,
-                                                      krb5_const_pointer,
-                                                      krb5_kdc_rep * ));
+typedef krb5_error_code (*git_decrypt_proc) (krb5_context,
+                                            const krb5_keyblock *,
+                                            krb5_const_pointer,
+                                            krb5_kdc_rep *);
 
 krb5_error_code krb5_obtain_padata(context, preauth_to_use, key_proc,
                                   key_seed, creds, request)