Arggh. Got the path/user the wrong way around. IDL is correct :-).
authorJeremy Allison <jra@samba.org>
Thu, 22 May 2008 21:36:09 +0000 (14:36 -0700)
committerJeremy Allison <jra@samba.org>
Thu, 22 May 2008 21:36:09 +0000 (14:36 -0700)
Jeremy.
(This used to be commit 2281274480d8cf9e773874301dbbc7bf06346901)

source3/rpc_server/srv_srvsvc_nt.c

index 5e17693bfa164cec9eabbc2602dbaa023a3674bb..ebbc39c304f8079d4b5fb93d1b9041d9b04c4333 100644 (file)
@@ -105,8 +105,8 @@ static int pipe_enum_fn( struct db_record *rec, void *p)
                                 (uint32_t)((procid_to_pid(&prec.pid)<<16) & prec.pnum),
                                 (FILE_READ_DATA|FILE_WRITE_DATA),
                                 0,
-                                username,
-                                fullpath);
+                                fullpath,
+                                username);
 
        fenum->ctr3->count++;
 
@@ -207,8 +207,8 @@ static void enum_file_fn( const struct share_mode_entry *e,
                                 e->share_file_id,
                                 permissions,
                                 num_locks,
-                                username,
-                                fullpath);
+                                fullpath,
+                                username);
        fenum->ctr3->count++;
 }