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 | e72c6fb36ebd3ea8fc6b6d8e1b1a9ff1ccb3ade9 (patch) | |
tree | be3350d619b53ae62938325fdb86a4fe5df62dc2 /source | |
parent | 22f348a1f9501cc00d46d6c6064f71198558c0ee (diff) | |
download | samba-e72c6fb36ebd3ea8fc6b6d8e1b1a9ff1ccb3ade9.tar.gz samba-e72c6fb36ebd3ea8fc6b6d8e1b1a9ff1ccb3ade9.tar.xz samba-e72c6fb36ebd3ea8fc6b6d8e1b1a9ff1ccb3ade9.zip |
support double functions
Diffstat (limited to 'source')
-rw-r--r-- | source/script/mkproto.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/script/mkproto.awk b/source/script/mkproto.awk index 1d15255a29c..503ef1e05c1 100644 --- a/source/script/mkproto.awk +++ b/source/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; } |