diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-10-07 09:49:48 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-10-07 12:20:45 +0200 |
commit | ff1ce6521b0b38fa3d2e09d79a8145a52c63b926 (patch) | |
tree | c54e76d1dec25e755e313786cd95263580f1b673 /source4/dsdb | |
parent | 4493c578b0da44ae2100cc0d4d6acc714bf39a3f (diff) | |
download | samba-ff1ce6521b0b38fa3d2e09d79a8145a52c63b926.tar.gz samba-ff1ce6521b0b38fa3d2e09d79a8145a52c63b926.tar.bz2 samba-ff1ce6521b0b38fa3d2e09d79a8145a52c63b926.zip |
s4:dsdb: fix the order of DSDB_CONTROL_* defines in samdb.h
This makes clear that struct dsdb_control_password_change
belongs to DSDB_CONTROL_PASSWORD_CHANGE_OID.
metze
Diffstat (limited to 'source4/dsdb')
-rw-r--r-- | source4/dsdb/samdb/samdb.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/source4/dsdb/samdb/samdb.h b/source4/dsdb/samdb/samdb.h index aedd3db4ff..2fb15b9a62 100644 --- a/source4/dsdb/samdb/samdb.h +++ b/source4/dsdb/samdb/samdb.h @@ -92,16 +92,6 @@ struct dsdb_control_password_change_status { #define DSDB_CONTROL_PASSWORD_HASH_VALUES_OID "1.3.6.1.4.1.7165.4.3.9" #define DSDB_CONTROL_PASSWORD_CHANGE_OID "1.3.6.1.4.1.7165.4.3.10" - -/* passed when we want to get the behaviour of the non-global catalog port */ -#define DSDB_CONTROL_NO_GLOBAL_CATALOG "1.3.6.1.4.1.7165.4.3.17" - -/* passed when we want special behaviour for partial replicas */ -#define DSDB_CONTROL_PARTIAL_REPLICA "1.3.6.1.4.1.7165.4.3.18" - -/* passed when we want special behaviour for dbcheck */ -#define DSDB_CONTROL_DBCHECK "1.3.6.1.4.1.7165.4.3.19" - struct dsdb_control_password_change { const struct samr_Password *old_nt_pwd_hash; const struct samr_Password *old_lm_pwd_hash; @@ -123,6 +113,16 @@ struct dsdb_control_password_change { */ #define DSDB_CONTROL_CHANGEREPLMETADATA_OID "1.3.6.1.4.1.7165.4.3.14" + +/* passed when we want to get the behaviour of the non-global catalog port */ +#define DSDB_CONTROL_NO_GLOBAL_CATALOG "1.3.6.1.4.1.7165.4.3.17" + +/* passed when we want special behaviour for partial replicas */ +#define DSDB_CONTROL_PARTIAL_REPLICA "1.3.6.1.4.1.7165.4.3.18" + +/* passed when we want special behaviour for dbcheck */ +#define DSDB_CONTROL_DBCHECK "1.3.6.1.4.1.7165.4.3.19" + #define DSDB_EXTENDED_REPLICATED_OBJECTS_OID "1.3.6.1.4.1.7165.4.4.1" struct dsdb_extended_replicated_object { struct ldb_message *msg; |