diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-10-30 23:45:21 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-11-02 16:36:56 +1100 |
commit | a3553658bfd7898081de90a79afce144c91b39ac (patch) | |
tree | 74ef25231ced225137e3c5c9c58ce8bd618898ea | |
parent | 371afc47dc744ce4012f5ea00ced29653bd5869a (diff) | |
download | samba-a3553658bfd7898081de90a79afce144c91b39ac.tar.gz samba-a3553658bfd7898081de90a79afce144c91b39ac.tar.xz samba-a3553658bfd7898081de90a79afce144c91b39ac.zip |
s4:dsdb Fix up after the MAP_ constants became LDB_MAP_
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/simple_ldap_map.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/simple_ldap_map.c b/source4/dsdb/samdb/ldb_modules/simple_ldap_map.c index 36104e7e3c1..2ab448662aa 100644 --- a/source4/dsdb/samdb/ldb_modules/simple_ldap_map.c +++ b/source4/dsdb/samdb/ldb_modules/simple_ldap_map.c @@ -613,7 +613,7 @@ static const struct ldb_map_attribute nsuniqueid_attributes[] = }, { .local_name = "unixHomeDirectory", - .type = MAP_RENAME, + .type = LDB_MAP_RENAME, .u = { .rename = { .remote_name = "homeDirectory" @@ -622,7 +622,7 @@ static const struct ldb_map_attribute nsuniqueid_attributes[] = }, { .local_name = "pwdLastSet", - .type = MAP_RENAME, + .type = LDB_MAP_RENAME, .u = { .rename = { .remote_name = "sambaPwdLastSet" @@ -631,7 +631,7 @@ static const struct ldb_map_attribute nsuniqueid_attributes[] = }, { .local_name = "lastLogon", - .type = MAP_RENAME, + .type = LDB_MAP_RENAME, .u = { .rename = { .remote_name = "sambaLogonTime" @@ -640,7 +640,7 @@ static const struct ldb_map_attribute nsuniqueid_attributes[] = }, { .local_name = "lastLogoff", - .type = MAP_RENAME, + .type = LDB_MAP_RENAME, .u = { .rename = { .remote_name = "sambaLogoffTime" @@ -649,7 +649,7 @@ static const struct ldb_map_attribute nsuniqueid_attributes[] = }, { .local_name = "badPwdCount", - .type = MAP_RENAME, + .type = LDB_MAP_RENAME, .u = { .rename = { .remote_name = "sambaBadPasswordCount" @@ -658,7 +658,7 @@ static const struct ldb_map_attribute nsuniqueid_attributes[] = }, { .local_name = "logonHours", - .type = MAP_RENAME, + .type = LDB_MAP_RENAME, .u = { .rename = { .remote_name = "sambaLogonHours" @@ -667,7 +667,7 @@ static const struct ldb_map_attribute nsuniqueid_attributes[] = }, { .local_name = "homeDrive", - .type = MAP_RENAME, + .type = LDB_MAP_RENAME, .u = { .rename = { .remote_name = "sambaHomeDrive" @@ -676,7 +676,7 @@ static const struct ldb_map_attribute nsuniqueid_attributes[] = }, { .local_name = "scriptPath", - .type = MAP_RENAME, + .type = LDB_MAP_RENAME, .u = { .rename = { .remote_name = "sambaLogonScript" @@ -685,7 +685,7 @@ static const struct ldb_map_attribute nsuniqueid_attributes[] = }, { .local_name = "profilePath", - .type = MAP_RENAME, + .type = LDB_MAP_RENAME, .u = { .rename = { .remote_name = "sambaProfilePath" @@ -694,7 +694,7 @@ static const struct ldb_map_attribute nsuniqueid_attributes[] = }, { .local_name = "userWorkstations", - .type = MAP_RENAME, + .type = LDB_MAP_RENAME, .u = { .rename = { .remote_name = "sambaUserWorkstations" @@ -703,7 +703,7 @@ static const struct ldb_map_attribute nsuniqueid_attributes[] = }, { .local_name = "homeDirectory", - .type = MAP_RENAME, + .type = LDB_MAP_RENAME, .u = { .rename = { .remote_name = "sambaHomePath" @@ -712,7 +712,7 @@ static const struct ldb_map_attribute nsuniqueid_attributes[] = }, { .local_name = "nextRid", - .type = MAP_RENAME, + .type = LDB_MAP_RENAME, .u = { .rename = { .remote_name = "sambaNextRid" @@ -721,7 +721,7 @@ static const struct ldb_map_attribute nsuniqueid_attributes[] = }, { .local_name = "privilegeDisplayName", - .type = MAP_RENAME, + .type = LDB_MAP_RENAME, .u = { .rename = { .remote_name = "sambaPrivName" |