summaryrefslogtreecommitdiff
path: root/source3/script
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>2000-06-08 13:56:07 +0000
committerLuke Leighton <lkcl@samba.org>2000-06-08 13:56:07 +0000
commit84d40095e1d7ba5c66cabfd2d41012162d652970 (patch)
tree51d7e4ce6b98b55dd044180c7e87a1009bcbc064 /source3/script
parent1bdbb4e6012307b366c064554361c59f27b1ae7e (diff)
downloadsamba-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.awk4
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;
}