diff options
author | Luke Leighton <lkcl@samba.org> | 1998-12-03 17:41:14 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-12-03 17:41:14 +0000 |
commit | ef58e48bc9af338ed6c734205d4faf82371284ac (patch) | |
tree | d7394623a8d6e5ce72199b66609c071a8c7fd692 /source/include | |
parent | 50fa4822df679b4d54b5a868179594ec087e811f (diff) | |
download | samba-ef58e48bc9af338ed6c734205d4faf82371284ac.tar.gz samba-ef58e48bc9af338ed6c734205d4faf82371284ac.tar.xz samba-ef58e48bc9af338ed6c734205d4faf82371284ac.zip |
moved get_unixgroups it will be needed by the unix instance of the group
DB API
Diffstat (limited to 'source/include')
-rw-r--r-- | source/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/include/proto.h b/source/include/proto.h index c1f46da32d6..fb4a9b75ea8 100644 --- a/source/include/proto.h +++ b/source/include/proto.h @@ -400,6 +400,7 @@ void standard_sub(connection_struct *conn,char *str); BOOL same_net(struct in_addr ip1,struct in_addr ip2,struct in_addr mask); struct hostent *Get_Hostbyname(const char *name); BOOL process_exists(int pid); +int get_unixgroups(char *user, uid_t uid, gid_t gid, int *p_ngroups, gid_t **p_groups); char *uidtoname(uid_t uid); char *gidtoname(gid_t gid); BOOL nametogid(const char *name, gid_t *gid); @@ -2739,7 +2740,6 @@ BOOL set_challenge(unsigned char *challenge); user_struct *get_valid_user_struct(uint16 vuid); void invalidate_vuid(uint16 vuid); char *validated_username(uint16 vuid); -int get_unixgroups(char *user, uid_t uid, gid_t gid, int *p_ngroups, gid_t **p_groups); uint16 register_vuid(uid_t uid,gid_t gid, char *unix_name, char *requested_name, BOOL guest); void add_session_user(char *user); BOOL smb_password_check(char *password, unsigned char *part_passwd, unsigned char *c8); |