diff options
author | Luke Leighton <lkcl@samba.org> | 2000-06-08 13:56:07 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 2000-06-08 13:56:07 +0000 |
commit | 84d40095e1d7ba5c66cabfd2d41012162d652970 (patch) | |
tree | 51d7e4ce6b98b55dd044180c7e87a1009bcbc064 /source3/script | |
parent | 1bdbb4e6012307b366c064554361c59f27b1ae7e (diff) | |
download | samba-84d40095e1d7ba5c66cabfd2d41012162d652970.tar.gz samba-84d40095e1d7ba5c66cabfd2d41012162d652970.tar.bz2 samba-84d40095e1d7ba5c66cabfd2d41012162d652970.zip |
added a NET_USER_INFO_3 struct to user_struct.
register_vuid fills it with constructed info.
(This used to be commit b1889e4334012b1b2caa604b859da4271509fc87)
Diffstat (limited to 'source3/script')
-rw-r--r-- | source3/script/mkproto.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk index 734db3ca53..7ae89b7467 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -100,11 +100,11 @@ END { { gotstart = 0; - if( $0 ~ /^connection_struct|^pipes_struct|^file_fd_struct|^files_struct|^connection_struct|^uid_t|^gid_t|^unsigned|^mode_t|^DIR|^user|^int|^pid_t|^ino_t|^off_t/ ) { + if( $0 ~ /^const|^connection_struct|^pipes_struct|^file_fd_struct|^files_struct|^connection_struct|^uid_t|^gid_t|^unsigned|^mode_t|^DIR|^user|^int|^pid_t|^ino_t|^off_t/ ) { gotstart = 1; } - if( $0 ~ /^LOCAL_GRP|^DOMAIN_GRP|^SMB_STRUCT_DIRENT|^SEC_ACL|^SEC_DESC|^SEC_DESC_BUF|^DOM_SID/ ) { + if( $0 ~ /^vuser_key|^UNISTR2|^LOCAL_GRP|^DOMAIN_GRP|^SMB_STRUCT_DIRENT|^SEC_ACL|^SEC_DESC|^SEC_DESC_BUF|^DOM_SID/ ) { gotstart = 1; } |