blob: 2d2e2e3febb0979173d962720c70d644d8d64eb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "includes.h"
/*
this is a set of temporary stub functions used during the libsmb rewrite.
This file will need to go away before the rewrite is complete.
*/
void become_root(void)
{}
void unbecome_root(void)
{}
BOOL become_user_permanently(uid_t uid, gid_t gid)
{ return True; }
void set_effective_uid(uid_t uid)
{}
uid_t sec_initial_uid(void)
{ return 0; }
|