Change the GCC specific __FUNCTION__ to C99's __func__.

OK'ed by:	des
This commit is contained in:
Stefan Farfeleder 2006-07-17 11:48:52 +00:00
parent af7ca25b1e
commit c67bd97df8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=160434

View File

@ -51,6 +51,6 @@ __END_DECLS
return (arg)
#define PAM_VERBOSE_ERROR(...) \
_pam_verbose_error(pamh, flags, __FILE__, __FUNCTION__, __VA_ARGS__)
_pam_verbose_error(pamh, flags, __FILE__, __func__, __VA_ARGS__)
#endif