diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-10-04 03:27:29 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-10-04 03:27:29 +0000 |
commit | e2b4941887cc7ab2739c1a6a2482dcc76546b3b0 (patch) | |
tree | 048be6c8edaa550ddb2d64009cc5f95ab0b896dd | |
parent | a1e10cfc3cb8416224bbc63fba83e4f50ce75a06 (diff) | |
download | samba-e2b4941887cc7ab2739c1a6a2482dcc76546b3b0.tar.gz samba-e2b4941887cc7ab2739c1a6a2482dcc76546b3b0.tar.bz2 samba-e2b4941887cc7ab2739c1a6a2482dcc76546b3b0.zip |
support a few more function types (like ino_t and off_t)
(This used to be commit 758048f1e17db70daa4cd169d5c9b833f94279f4)
-rw-r--r-- | source3/script/mkproto.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk index dd8d4946a2..fa4986ba6b 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -90,7 +90,7 @@ 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/ ) { + 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/ ) { gotstart = 1; } |