Your message dated Tue, 30 Jun 2009 21:35:10 +0000
with message-id <[email protected]>
and subject line Bug#496794: fixed in unionfs-fuse 0.23.hg.20090611-1
has caused the Debian Bug report #496794,
regarding utime callback is deprecated
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
496794: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=496794
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: unionfs-fuse
Version: 0.21-2
Severity: wishlist
Tags: patch
The utime callback only allows for second resolution and is
deprecated. The utimens callback allows for microsecond resolution.
MfG
Goswin
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable'), (400, 'unstable-i386')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.25-kvm-nofb (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash
diff -u unionfs-fuse-0.21/debian/changelog unionfs-fuse-0.21/debian/changelog
--- unionfs-fuse-0.21/debian/changelog
+++ unionfs-fuse-0.21/debian/changelog
@@ -1,3 +1,9 @@
+unionfs-fuse (0.21-2a0.mrvn.1) unstable; urgency=low
+
+ * utime() is deprecated, use utimens() instead.
+
+ -- Goswin von Brederlow <[email protected]> Wed, 27 Aug 2008 15:59:52 +0200
+
unionfs-fuse (0.21-2) unstable; urgency=high
* fix a critical bug: creating new files in directories existing only
only in patch2:
unchanged:
--- unionfs-fuse-0.21.orig/src/unionfs.c
+++ unionfs-fuse-0.21/src/unionfs.c
@@ -684,7 +684,7 @@
return 0;
}
-static int unionfs_utime(const char *path, struct utimbuf *buf) {
+static int unionfs_utimens(const char *path, struct timeval *tv) {
DBG_IN();
if (uopt.stats_enabled && strcmp(path, STATS_FILENAME) == 0) return 0;
@@ -700,7 +700,7 @@
char p[PATHLEN_MAX];
snprintf(p, PATHLEN_MAX, "%s%s", uopt.branches[i].path, path);
- int res = utime(p, buf);
+ int res = utimes(p, tv);
to_root();
@@ -843,7 +843,7 @@
.symlink = unionfs_symlink,
.truncate = unionfs_truncate,
.unlink = unionfs_unlink,
- .utime = unionfs_utime,
+ .utimens = unionfs_utimens,
.write = unionfs_write,
#ifdef HAVE_SETXATTR
.getxattr = unionfs_getxattr,
--- End Message ---
--- Begin Message ---
Source: unionfs-fuse
Source-Version: 0.23.hg.20090611-1
We believe that the bug you reported is fixed in the latest version of
unionfs-fuse, which is due to be installed in the Debian FTP archive:
unionfs-fuse_0.23.hg.20090611-1.diff.gz
to pool/main/u/unionfs-fuse/unionfs-fuse_0.23.hg.20090611-1.diff.gz
unionfs-fuse_0.23.hg.20090611-1.dsc
to pool/main/u/unionfs-fuse/unionfs-fuse_0.23.hg.20090611-1.dsc
unionfs-fuse_0.23.hg.20090611-1_i386.deb
to pool/main/u/unionfs-fuse/unionfs-fuse_0.23.hg.20090611-1_i386.deb
unionfs-fuse_0.23.hg.20090611.orig.tar.gz
to pool/main/u/unionfs-fuse/unionfs-fuse_0.23.hg.20090611.orig.tar.gz
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Bernd Schubert <[email protected]> (supplier of updated unionfs-fuse
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Thu, 11 Jun 2009 20:42:41 +0200
Source: unionfs-fuse
Binary: unionfs-fuse
Architecture: source i386
Version: 0.23.hg.20090611-1
Distribution: unstable
Urgency: low
Maintainer: Bernd Schubert <[email protected]>
Changed-By: Bernd Schubert <[email protected]>
Description:
unionfs-fuse - Fuse implementation of unionfs
Closes: 496794 511047 511157 511446 530214
Changes:
unionfs-fuse (0.23.hg.20090611-1) unstable; urgency=low
.
* another pull from my branch
* change my maintainer mail address
.
unionfs-fuse (0.23.hg.20090601-2) unstable; urgency=low
.
* set DH_COMPAT to 7
* fix several lintian packaging errors
.
unionfs-fuse (0.23.hg.20090601-1) unstable; urgency=low
.
* new upstream release
* pull from my branch to include everything that is supposed to be in 0.24
(http://podgorny.cz/~bernd/hg/hgwebdir.cgi/radek-trunk-bernd-merge)
* (closes: #496794)
* (closes: #530214)
* (closes: #511157)
* new option "-o statfs_omit_ro" (closes: #511446)
* man page updated if "-o cow" (is not specified closes: #511047)
* partly fixes bug #509516, I leave that bug open, since only fixed for one
rw branch
Checksums-Sha1:
5a1b68c32b6c8721088af97d163de0ee2df59c74 1109
unionfs-fuse_0.23.hg.20090611-1.dsc
a5601696491ea67037a28fbbbf0826db54c6def1 400988
unionfs-fuse_0.23.hg.20090611.orig.tar.gz
afd40bfb0103d25b78b0b8085718b6e24dd978de 4311
unionfs-fuse_0.23.hg.20090611-1.diff.gz
0f522c88147aac121f00db1f647a4caa9898d712 25036
unionfs-fuse_0.23.hg.20090611-1_i386.deb
Checksums-Sha256:
cc7434892c17dbe57df4f6db4a0d74e16f155bbca49e605397cad00ea72abc05 1109
unionfs-fuse_0.23.hg.20090611-1.dsc
dc9bf416e8c7607ce79c98cefe20bb3849471eb8c5bdc55d29305f19ae9b5ba8 400988
unionfs-fuse_0.23.hg.20090611.orig.tar.gz
07a2876915565743d130d8bc89c1f643ca467b2055a2165069c1659f236e3ebb 4311
unionfs-fuse_0.23.hg.20090611-1.diff.gz
0ee620fae0358e3914ff1f19c9e4832241a2f7cb3617fa1945b1582590dccecc 25036
unionfs-fuse_0.23.hg.20090611-1_i386.deb
Files:
d6d9471aab099921526d2493078a1f4c 1109 misc optional
unionfs-fuse_0.23.hg.20090611-1.dsc
ef22576e66c7c837a1dcbc7dafc71af4 400988 misc optional
unionfs-fuse_0.23.hg.20090611.orig.tar.gz
89fbea0b7e242ed6005c2b79d5637696 4311 misc optional
unionfs-fuse_0.23.hg.20090611-1.diff.gz
851e2074f250d4586f0a79425ce1af98 25036 misc optional
unionfs-fuse_0.23.hg.20090611-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iEYEARECAAYFAkpKcskACgkQDecnbV4Fd/K6cQCeOc2x/QKLdhaW4XRbUPNaqVdS
UW8An39morKTiXsfg9I3BqT5uGGHpBLl
=de7G
-----END PGP SIGNATURE-----
--- End Message ---