summaryrefslogtreecommitdiff
path: root/source/script
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-08-15 07:27:34 +0000
committerAndrew Tridgell <tridge@samba.org>1998-08-15 07:27:34 +0000
commitb088c804f98908eb02f05ab2f2e8a61691a0a582 (patch)
tree709740cd4fb6006fc1f254bdf306415d4c860652 /source/script
parent76e523907c2ee51031341c3cef9e9f6b5b2d9dc4 (diff)
downloadsamba-b088c804f98908eb02f05ab2f2e8a61691a0a582.tar.gz
this checkin gets rid of the global Files[] array and makes it local
in files.c it should now be faily easy to expand the default MAX_OPEN_FILES to many thousands.
Diffstat (limited to 'source/script')
-rw-r--r--source/script/mkproto.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/script/mkproto.awk b/source/script/mkproto.awk
index 28a68e29e26..0b963cbc80a 100644
--- a/source/script/mkproto.awk
+++ b/source/script/mkproto.awk
@@ -80,7 +80,7 @@ END {
next;
}
-!/^connection_struct|^uid_t|^gid_t|^unsigned|^mode_t|^DIR|^user|^int|^char|^uint|^struct|^BOOL|^void|^time|^smb_shm_offset_t|^shm_offset_t|^enum remote_arch_types|^FILE/ {
+!/^file_fd_struct|^files_struct|^connection_struct|^uid_t|^gid_t|^unsigned|^mode_t|^DIR|^user|^int|^char|^uint|^struct|^BOOL|^void|^time|^smb_shm_offset_t|^shm_offset_t|^enum remote_arch_types|^FILE/ {
next;
}