diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-02-05 01:30:50 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-02-05 01:30:50 +0000 |
commit | b6b6b0c691543fa24442edaabdab3a347a53a6de (patch) | |
tree | 4b5a594f535deb41c1cf8013e603d2d9bc81b7b7 /source3 | |
parent | 5d2302899a78382dfbdf08ced2cca252cd1f4d63 (diff) | |
download | samba-b6b6b0c691543fa24442edaabdab3a347a53a6de.tar.gz samba-b6b6b0c691543fa24442edaabdab3a347a53a6de.tar.bz2 samba-b6b6b0c691543fa24442edaabdab3a347a53a6de.zip |
support double functions
(This used to be commit e72c6fb36ebd3ea8fc6b6d8e1b1a9ff1ccb3ade9)
Diffstat (limited to 'source3')
-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 1d15255a29..503ef1e05c 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -114,7 +114,7 @@ END { { gotstart = 0; - if( $0 ~ /^const|^connection_struct|^pipes_struct|^smb_np_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|^smb_np_struct|^file_fd_struct|^files_struct|^connection_struct|^uid_t|^gid_t|^unsigned|^mode_t|^DIR|^user|^int|^pid_t|^ino_t|^off_t|^double/ ) { gotstart = 1; } |