pull up r19755 from trunk
authorTom Yu <tlyu@mit.edu>
Tue, 18 Sep 2007 03:37:33 +0000 (03:37 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 18 Sep 2007 03:37:33 +0000 (03:37 +0000)
 r19755@cathode-dark-space:  jaltman | 2007-08-06 11:19:50 -0400
 ticket: new
 subject: missing comma

 The pkinit additions in revision 18973 left out a comma after the
 last function in the list.  This caused builds that did not define
 DESIGNATED_INITIALIZERS to break.

ticket: 5617

git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-6@19942 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/os/accessor.c

index 7a6946c1603b9182123350d9ce6bd6750378748c..876ac97499c8eb78186e70ef5159ea434f6fbbcf 100644 (file)
@@ -78,7 +78,8 @@ krb5int_accessor(krb5int_access *internals, krb5_int32 version)
            S (asn1_ldap_encode_sequence_of_keys, krb5int_ldap_encode_sequence_of_keys),
            S (asn1_ldap_decode_sequence_of_keys, krb5int_ldap_decode_sequence_of_keys),
            S (encode_krb5_pa_pk_as_req, encode_krb5_pa_pk_as_req),
-           S (encode_krb5_pa_pk_as_req_draft9, encode_krb5_pa_pk_as_req_draft9),           S (encode_krb5_pa_pk_as_rep, encode_krb5_pa_pk_as_rep),
+           S (encode_krb5_pa_pk_as_req_draft9, encode_krb5_pa_pk_as_req_draft9),
+            S (encode_krb5_pa_pk_as_rep, encode_krb5_pa_pk_as_rep),
            S (encode_krb5_pa_pk_as_rep_draft9, encode_krb5_pa_pk_as_rep_draft9),
            S (encode_krb5_auth_pack, encode_krb5_auth_pack),
            S (encode_krb5_auth_pack_draft9, encode_krb5_auth_pack_draft9),
@@ -105,7 +106,7 @@ krb5int_accessor(krb5int_access *internals, krb5_int32 version)
            S (encode_krb5_kdc_req_body, encode_krb5_kdc_req_body),
            S (krb5_free_kdc_req, krb5_free_kdc_req),
            S (krb5int_set_prompt_types, krb5int_set_prompt_types),
-           S (encode_krb5_authdata_elt, encode_krb5_authdata_elt)
+           S (encode_krb5_authdata_elt, encode_krb5_authdata_elt),
 #if DESIGNATED_INITIALIZERS
        };
 #else