summaryrefslogtreecommitdiff
path: root/source4/ntvfs/unixuid
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2009-07-09 17:54:42 +0200
committerJelmer Vernooij <jelmer@samba.org>2009-07-19 15:58:45 +0200
commit5b4cb31ef1359d8c39dbffc028abb68652cc2186 (patch)
tree70a4899df0d74c26c9e8dd0fb25d73b72563b15e /source4/ntvfs/unixuid
parentde04e00ec2bf823f90a464416e88231e97f8df59 (diff)
downloadsamba-5b4cb31ef1359d8c39dbffc028abb68652cc2186.tar.gz
samba-5b4cb31ef1359d8c39dbffc028abb68652cc2186.tar.bz2
samba-5b4cb31ef1359d8c39dbffc028abb68652cc2186.zip
Cosmetic correction
Changes the order of two commands. First set up the "priv" structure, then assign it to the "ntvfs" structure.
Diffstat (limited to 'source4/ntvfs/unixuid')
-rw-r--r--source4/ntvfs/unixuid/vfs_unixuid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/unixuid/vfs_unixuid.c b/source4/ntvfs/unixuid/vfs_unixuid.c
index 3ef341d61a..97c306f7c3 100644
--- a/source4/ntvfs/unixuid/vfs_unixuid.c
+++ b/source4/ntvfs/unixuid/vfs_unixuid.c
@@ -310,9 +310,9 @@ static NTSTATUS unixuid_connect(struct ntvfs_module_context *ntvfs,
return NT_STATUS_INTERNAL_ERROR;
}
- ntvfs->private_data = priv;
priv->last_sec_ctx = NULL;
priv->last_token = NULL;
+ ntvfs->private_data = priv;
tevent_loop_set_nesting_hook(ntvfs->ctx->event_ctx,
unixuid_event_nesting_hook,