]> Dogcows Code - chaz/tar/commitdiff
* src/misc.c (set_file_atime): Use gl_futimens, not futimens,
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 29 May 2007 16:48:23 +0000 (16:48 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 29 May 2007 16:48:23 +0000 (16:48 +0000)
due to gnulib change.

SCALAR(0x828a248)

SCALAR(0x828a404)

ChangeLog
src/misc.c

index a71ef6983af5b6c428ca5e953cb88dcc87fbebfd..8e31c7f4e05045509a9e866185875898ea028415 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-05-29  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * src/misc.c (set_file_atime): Use gl_futimens, not futimens,
+       due to gnulib change.
+
 2007-05-19  Sergey Poznyakoff  <gray@gnu.org.ua>
 
        * src/common.h (buffer_write_global_xheader): New function
@@ -16,7 +21,7 @@
        (xheader_write_global,xheader_write,xheader_string_begin)
        (xheader_string_add,xheader_string_end): Take xhdr as first
        argument.
-       
+
        * src/buffer.c (buffer_write_global_xheader): New function
        Update to use new xheader calls.
 
@@ -27,7 +32,7 @@
        * tests/T-null.at: Minor fix
        * tests/atlocal.in (tarball_prereq): Discard eventual md5sum
        output.
-       
+
 2007-05-18  Sergey Poznyakoff  <gray@gnu.org.ua>
 
        * src/create.c (dump_file0): Original ctime cannot be used as a
index ba7ed051cd926c0c6be77e599ce75f44eef62b13..a886b06719e51c249621b47ca0cbb006deb8e95b 100644 (file)
@@ -1,7 +1,7 @@
 /* Miscellaneous functions, not really specific to GNU tar.
 
    Copyright (C) 1988, 1992, 1994, 1995, 1996, 1997, 1999, 2000, 2001,
-   2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+   2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by the
@@ -516,7 +516,7 @@ set_file_atime (int fd, char const *file, struct timespec const timespec[2])
     }
 #endif
 
-  return futimens (fd, file, timespec);
+  return gl_futimens (fd, file, timespec);
 }
 
 /* A description of a working directory.  */
This page took 0.027368 seconds and 4 git commands to generate.