diff options
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/dlltool.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 4073d0b..3a000b9 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2001-04-17 Danny Smith <dannysmith@users.sourceforge.net> + + * dlltool.c (do_default_excludes): Initialise to true. + 2001-04-10 Alan Modra <amodra@one.net.au> * MAINTAINERS: Update my email address diff --git a/binutils/dlltool.c b/binutils/dlltool.c index a92688c..4295e0a 100644 --- a/binutils/dlltool.c +++ b/binutils/dlltool.c @@ -367,7 +367,7 @@ static boolean export_all_symbols; /* True if we should exclude the symbols in DEFAULT_EXCLUDES when exporting all symbols. */ -static boolean do_default_excludes; +static boolean do_default_excludes=true; /* Default symbols to exclude when exporting all the symbols. */ static const char *default_excludes = "DllMain@12,DllEntryPoint@0,impure_ptr"; |