]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - hashlib.h
fix for SIGINT in sourced script
[thirdparty/bash.git] / hashlib.h
index bb7120be10de7d7534340ef880664ef9937446d5..88ea778f032c29d59bde1ad54af9e7bc3de378d1 100644 (file)
--- a/hashlib.h
+++ b/hashlib.h
@@ -1,22 +1,22 @@
 /* hashlib.h -- the data structures used in hashing in Bash. */
 
-/* Copyright (C) 1993 Free Software Foundation, Inc.
+/* Copyright (C) 1993-2009 Free Software Foundation, Inc.
 
    This file is part of GNU Bash, the Bourne Again SHell.
 
-   Bash is free software; you can redistribute it and/or modify it under
-   the terms of the GNU General Public License as published by the Free
-   Software Foundation; either version 2, or (at your option) any later
-   version.
+   Bash is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation, either version 3 of the License, or
+   (at your option) any later version.
 
-   Bash is distributed in the hope that it will be useful, but WITHOUT ANY
-   WARRANTY; without even the implied warranty of MERCHANTABILITY or
-   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-   for more details.
+   Bash is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
 
-   You should have received a copy of the GNU General Public License along
-   with Bash; see the file COPYING.  If not, write to the Free Software
-   Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
+   You should have received a copy of the GNU General Public License
+   along with Bash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #if !defined (_HASHLIB_H_)
 #define _HASHLIB_H_
@@ -73,7 +73,7 @@ extern unsigned int hash_string __P((const char *));
                (BUCKET_CONTENTS *)NULL)
 
 /* Default number of buckets in the hash table. */
-#define DEFAULT_HASH_BUCKETS 64        /* was 107, then 53, must be power of two now */
+#define DEFAULT_HASH_BUCKETS 128       /* must be power of two */
 
 #define HASH_ENTRIES(ht)       ((ht) ? (ht)->nentries : 0)