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 | b1889e4334012b1b2caa604b859da4271509fc87 (patch) | |
tree | 4e40f307014e353ec3c92bff4e3dfd09affed595 /source/script | |
parent | 6de329f6bf9c26e132869cf43d4976d4881e285c (diff) | |
download | samba-b1889e4334012b1b2caa604b859da4271509fc87.tar.gz samba-b1889e4334012b1b2caa604b859da4271509fc87.tar.xz samba-b1889e4334012b1b2caa604b859da4271509fc87.zip |
added a NET_USER_INFO_3 struct to user_struct.
register_vuid fills it with constructed info.
Diffstat (limited to 'source/script')
-rw-r--r-- | source/script/mkproto.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/script/mkproto.awk b/source/script/mkproto.awk index 734db3ca53d..7ae89b74675 100644 --- a/source/script/mkproto.awk +++ b/source/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; } |