search for: get_valid_user_struct

Displaying 2 results from an estimated 2 matches for "get_valid_user_struct".

2006 Aug 08
2
Applying security updates
...} + if (conn_num_open() > 2047) { + *status = NT_STATUS_INSUFF_SERVER_RESOURCES; + return NULL; + } + if(lp_security() != SEC_SHARE) { vuser = get_valid_user_struct(vuid); if (!vuser) { Does anyone know how to apply the update? Many thanks Steve
2000 May 22
1
Inherit Permissions addition
...comments or feedback would be very welcome. Sincerely, --Kyle Kyle Herbert First 'Net' Impressions, LLC -------------- next part -------------- --- uid.c.original Thu May 11 04:57:19 2000 +++ uid.c Sat May 13 12:17:30 2000 @@ -160,9 +160,11 @@ { user_struct *vuser = get_valid_user_struct(vuid); int snum; - gid_t gid; + gid_t gid; uid_t uid; char group_c; + int inheritnewgid; + gid_t inheritedgid; if (!conn) { DEBUG(2,("Connection not open\n")); @@ -170,6 +172,43 @@ } /* + * See i...