mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 01:24:46 -04:00
made flags values use leading zeros to indicate field width
This commit is contained in:
parent
697d35a286
commit
5965096e50
1 changed files with 3 additions and 3 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: sdb.h,v 1.3 2000/08/22 01:26:08 bwelling Exp $ */
|
||||
/* $Id: sdb.h,v 1.4 2000/08/22 01:46:12 gson Exp $ */
|
||||
|
||||
#ifndef DNS_SDB_H
|
||||
#define DNS_SDB_H 1
|
||||
|
|
@ -72,8 +72,8 @@ typedef isc_result_t
|
|||
typedef void
|
||||
(*dns_sdbdestroyfunc_t)(const char *zone, void *driverdata, void **dbdata);
|
||||
|
||||
#define DNS_SDBFLAG_RELATIVEOWNER 0x1U
|
||||
#define DNS_SDBFLAG_RELATIVERDATA 0x2U
|
||||
#define DNS_SDBFLAG_RELATIVEOWNER 0x00000001U
|
||||
#define DNS_SDBFLAG_RELATIVERDATA 0x00000002U
|
||||
|
||||
isc_result_t
|
||||
dns_sdb_register(const char *drivername, dns_sdblookupfunc_t lookup,
|
||||
|
|
|
|||
Loading…
Reference in a new issue