From: Tom Yu Date: Thu, 4 Oct 2007 20:17:48 +0000 (+0000) Subject: pull up r19754 from trunk X-Git-Tag: krb5-1.6.3-beta2~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a51c7babce09e4f1bfbc8f71ecb011a540db2157;p=krb5.git pull up r19754 from trunk r19754@cathode-dark-space: jaltman | 2007-08-06 11:11:03 -0400 ticket: new subject: KRB5_CALLCONV must be specified inside parens When declaring a function pointer, the function type modifiers must be inside the parentheses. return-type (modifers * function-name) (parameters) ticket: 5625 version_fixed: 1.6.3 git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-6@20089 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/k5-int.h b/src/include/k5-int.h index 833485cb1..02395816e 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -1980,7 +1980,7 @@ typedef struct _krb5int_access { (const krb5_data *output, krb5_kdc_req **rep); krb5_error_code (*encode_krb5_kdc_req_body) (const krb5_kdc_req *rep, krb5_data **code); - void KRB5_CALLCONV (*krb5_free_kdc_req) + void (KRB5_CALLCONV *krb5_free_kdc_req) (krb5_context, krb5_kdc_req * ); void (*krb5int_set_prompt_types) (krb5_context, krb5_prompt_type *);