Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 99225 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-2 / +6 lines)
Line  Link Here
0
-- ext/standard/dns.c
0
++ ext/standard/dns.c
Lines 275-280 PHP_FUNCTION(checkdnsrr) Link Here
275
#define MAXHOSTNAMELEN  256
275
#define MAXHOSTNAMELEN  256
276
#endif /* MAXHOSTNAMELEN */
276
#endif /* MAXHOSTNAMELEN */
277
277
278
#if HAVE_DN_SKIPNAME
278
/* {{{ proto int getmxrr(string hostname, array mxhosts [, array weight])
279
/* {{{ proto int getmxrr(string hostname, array mxhosts [, array weight])
279
   Get MX records corresponding to a given Internet host name */
280
   Get MX records corresponding to a given Internet host name */
280
PHP_FUNCTION(getmxrr)
281
PHP_FUNCTION(getmxrr)
Lines 355-360 PHP_FUNCTION(getmxrr) Link Here
355
	RETURN_TRUE;
356
	RETURN_TRUE;
356
}
357
}
357
/* }}} */
358
/* }}} */
359
#endif /* HAVE_DN_SKIPNAME */
358
360
359
#endif
361
#endif
360
/*
362
/*
361
-- ext/standard/basic_functions.c
363
++ ext/standard/basic_functions.c
Lines 449-455 function_entry basic_functions[] = { Link Here
449
449
450
#if HAVE_RES_SEARCH && !(defined(__BEOS__) || defined(PHP_WIN32) || defined(NETWARE))
450
#if HAVE_RES_SEARCH && !(defined(__BEOS__) || defined(PHP_WIN32) || defined(NETWARE))
451
	PHP_FE(checkdnsrr,														NULL)
451
	PHP_FE(checkdnsrr,														NULL)
452
# if HAVE_DN_SKIPNAME
452
	PHP_FE(getmxrr,second_and_third_args_force_ref)
453
	PHP_FE(getmxrr,second_and_third_args_force_ref)
454
# endif
453
#endif
455
#endif
454
456
455
	PHP_FE(getmyuid,														NULL)
457
	PHP_FE(getmyuid,														NULL)

Return to bug 99225