Browse Source

build: update gnulib submodule to latest

* src/misc.c (maybe_backup_file): Adjust to Gnulib change.
Paul Eggert 6 years ago
parent
commit
6238296458
2 changed files with 2 additions and 2 deletions
  1. 1 1
      gnulib
  2. 1 1
      src/misc.c

+ 1 - 1
gnulib

@@ -1 +1 @@
-Subproject commit c5e76a95605b1ef70559f90ebb656e0a4efb8fd9
+Subproject commit c58eb574c3a2cb76113ad4d9afea19ab5562f292

+ 1 - 1
src/misc.c

@@ -727,7 +727,7 @@ maybe_backup_file (const char *file_name, bool this_is_the_archive)
       && (S_ISBLK (file_stat.st_mode) || S_ISCHR (file_stat.st_mode)))
     return true;
 
-  after_backup_name = find_backup_file_name (file_name, backup_type);
+  after_backup_name = find_backup_file_name (AT_FDCWD, file_name, backup_type);
   if (! after_backup_name)
     xalloc_die ();