diff options
author | Alan Modra <amodra@gmail.com> | 2021-02-05 12:59:16 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-02-05 13:04:29 +1030 |
commit | c180f095f32ca62f138da9bc7fb96cac0365fb5d (patch) | |
tree | 4e1ab7a50628d25858501e1ee17ee9ea5f385dfb | |
parent | 04b4939b0362686e7b3ebb531edb0bbd37a59a1b (diff) | |
download | gdb-c180f095f32ca62f138da9bc7fb96cac0365fb5d.zip gdb-c180f095f32ca62f138da9bc7fb96cac0365fb5d.tar.gz gdb-c180f095f32ca62f138da9bc7fb96cac0365fb5d.tar.bz2 |
PR27345, binutils/arsup.c: lstat() not available on all targets
We can just use stat here, the same as is done in ar.c:open_inarch.
PR 27345
* arsup.c (ar_save): Use stat rather than lstat.
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/arsup.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 79c4609..dd4d7f1 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2021-02-05 Alan Modra <amodra@gmail.com> + + PR 27345 + * arsup.c (ar_save): Use stat rather than lstat. + 2021-02-03 Alan Modra <amodra@gmail.com> PR 27270 diff --git a/binutils/arsup.c b/binutils/arsup.c index a60629f..fa7706f 100644 --- a/binutils/arsup.c +++ b/binutils/arsup.c @@ -357,7 +357,7 @@ ar_save (void) #endif bfd_close (obfd); - if (lstat (real_name, &target_stat) != 0) + if (stat (real_name, &target_stat) != 0) { /* The temp file created in ar_open has mode 0600 as per mkstemp. Create the real empty output file here so smart_rename will |