summaryrefslogtreecommitdiff
path: root/source3/rpc_server/samr/srv_samr_util.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-02-15 19:09:51 +0100
committerVolker Lendecke <vl@samba.org>2011-02-15 21:12:22 +0100
commit63c556e306ca01a8f65d884275a530a8eced6b2c (patch)
tree6d048ced8549cbfceeee9c10ac23c8d019f1a52b /source3/rpc_server/samr/srv_samr_util.c
parentd9d0fef862b198f43ead20193fae8283a192af73 (diff)
downloadsamba-63c556e306ca01a8f65d884275a530a8eced6b2c.tar.gz
samba-63c556e306ca01a8f65d884275a530a8eced6b2c.tar.bz2
samba-63c556e306ca01a8f65d884275a530a8eced6b2c.zip
s3: Pass "country_code" through samr
Diffstat (limited to 'source3/rpc_server/samr/srv_samr_util.c')
-rw-r--r--source3/rpc_server/samr/srv_samr_util.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/rpc_server/samr/srv_samr_util.c b/source3/rpc_server/samr/srv_samr_util.c
index 6fc4ade3cf..77d40e0251 100644
--- a/source3/rpc_server/samr/srv_samr_util.c
+++ b/source3/rpc_server/samr/srv_samr_util.c
@@ -640,6 +640,15 @@ void copy_id21_to_sam_passwd(const char *log_prefix,
}
}
}
+
+ if (from->fields_present & SAMR_FIELD_COUNTRY_CODE) {
+ DEBUG(10,("%s SAMR_FIELD_COUNTRY_CODE: %08X -> %08X\n", l,
+ pdb_get_country_code(to), from->country_code));
+ if (from->country_code != pdb_get_country_code(to)) {
+ pdb_set_country_code(to,
+ from->country_code, PDB_CHANGED);
+ }
+ }
}