diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2003-10-27 13:20:32 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2003-10-27 13:20:32 +0000 |
commit | 50c2245bd8d8b406e46e3888df92f2443f76a94f (patch) | |
tree | 056f2d7f4a4d4d4d9d7aacfad9a831c215ad8353 /binutils/ar.c | |
parent | ed570f48a0c7fa84eb8c8fb0a0861074ccd4f55f (diff) | |
download | gdb-50c2245bd8d8b406e46e3888df92f2443f76a94f.zip gdb-50c2245bd8d8b406e46e3888df92f2443f76a94f.tar.gz gdb-50c2245bd8d8b406e46e3888df92f2443f76a94f.tar.bz2 |
* ChangeLog: Fix typos.
* ChangeLog-9197: Likewise.
* ChangeLog-9899: Likewise.
* NEWS: Likewise.
* ar.c: Fix comment typos.
* arsup.c: Likewise.
* coffgrok.c: Likewise.
* debug.c: Likewise.
* debug.h: Likewise.
* dlltool.c: Likewise.
* ieee.c: Likewise.
* nm.c: Likewise.
* objdump.c: Likewise.
* prdbg.c: Likewise.
* readelf.c: Likewise.
* resrc.c: Likewise.
* sysinfo.y: Likewise.
* windres.c: Likewise.
Diffstat (limited to 'binutils/ar.c')
-rw-r--r-- | binutils/ar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/binutils/ar.c b/binutils/ar.c index 95e1c66..1724171 100644 --- a/binutils/ar.c +++ b/binutils/ar.c @@ -24,7 +24,7 @@ should have long options too. GNU ar used to check file against filesystem in quick_update and replace operations (would check mtime). Doesn't warn when name truncated. No way to specify pos_end. Error messages should be - more consistant. */ + more consistent. */ #include "bfd.h" #include "libiberty.h" @@ -103,7 +103,7 @@ int newer_only = 0; /* Controls the writing of an archive symbol table (in BSD: a __.SYMDEF member). -1 means we've been explicitly asked to not write a symbol table; - +1 means we've been explictly asked to write it; + +1 means we've been explicitly asked to write it; 0 is the default. Traditionally, the default in BSD has been to not write the table. However, for POSIX.2 compliance the default is now to write a symbol table @@ -991,7 +991,7 @@ do_quick_append (const char *archive_filename, char **files_to_append) if (ar_truncate) temp->flags |= BFD_TRADITIONAL_FORMAT; - /* assume it's an achive, go straight to the end, sans $200 */ + /* assume it's an archive, go straight to the end, sans $200 */ fseek (ofile, 0, 2); for (; files_to_append && *files_to_append; ++files_to_append) |