1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

resolv_wrapper: Update config variable name to match the code

Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Andreas Schneider <asn@samba.org>

Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Tue Aug  9 18:20:00 CEST 2016 on sn-devel-144
This commit is contained in:
Amitay Isaacs 2016-08-08 14:13:30 +10:00 committed by Andreas Schneider
parent eb8f523b2f
commit 908539c1c1

View File

@ -38,7 +38,7 @@ def configure(conf):
addmain=False,
msg='Checking for library destructor support')
# check HAVE_FUNCTION_ATTRIBUTE_FORMAT
# check HAVE_ATTRIBUTE_PRINTF_FORMAT
conf.CHECK_CODE('''
void log_fn(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
@ -46,7 +46,7 @@ def configure(conf):
return 0;
}
''',
'HAVE_FUNCTION_ATTRIBUTE_FORMAT',
'HAVE_ATTRIBUTE_PRINTF_FORMAT',
addmain=False,
msg='Checking for printf format validation support')