-$Id: CHANGES,v 1.201 2002/11/28 08:54:00 stelian Exp $
+$Id: CHANGES,v 1.202 2002/12/09 10:53:59 stelian Exp $
Changes between versions 0.4b32 and 0.4b33 (released ?????????????????)
=======================================================================
Thanks to Dark Force <daq4th@users.sourceforge.net> for
reporting this bug and providing test cases.
+3. Fixed the "ACL won't be dumped" warning message (which showed
+ an extra, unrelated error message). Thanks to Dragan Krnic
+ <dkrnic@lycos.com> for reporting this bug.
+
Changes between versions 0.4b31 and 0.4b32 (released November 15, 2002)
=======================================================================
-$Id: THANKS,v 1.70 2002/11/15 09:49:39 stelian Exp $
+$Id: THANKS,v 1.71 2002/12/09 10:53:59 stelian Exp $
Dump and restore were written by the people of the CSRG at the University
of California, Berkeley.
Richard Jones rich@annexia.org
Charles Karney karney@users.sourceforge.net
Henry Katz hkatz@hkatz.dialup.access.net
+Dragan Krnic dkrnic@lycos.com
Klaus Kudielka kkudielk@cacofonix.nt.tuwien.ac.at
Thorsten Kukuk kukuk@suse.de
Florian La Roche florian@jurix.jura.uni-sb.de
#ifndef lint
static const char rcsid[] =
- "$Id: traverse.c,v 1.51 2002/09/02 12:20:26 stelian Exp $";
+ "$Id: traverse.c,v 1.52 2002/12/09 10:53:59 stelian Exp $";
#endif /* not lint */
#include <config.h>
nbi.di_uid = (((int32_t)dp->di_uidhigh) << 16) | dp->di_uid;
nbi.di_gid = (((int32_t)dp->di_gidhigh) << 16) | dp->di_gid;
if (dp->di_file_acl)
- warn("ACLs in inode #%ld won't be dumped", (long)ino);
+ msg("ACLs in inode #%ld won't be dumped\n", (long)ino);
memmove(&spcl.c_dinode, &nbi, sizeof(nbi));
#else /* __linux__ */
spcl.c_dinode = *dp;
nbi.di_uid = (((int32_t)dp->di_uidhigh) << 16) | dp->di_uid;
nbi.di_gid = (((int32_t)dp->di_gidhigh) << 16) | dp->di_gid;
if (dp->di_file_acl)
- warn("ACLs in inode #%ld won't be dumped", (long)ino);
+ msg("ACLs in inode #%ld won't be dumped\n", (long)ino);
memmove(&spcl.c_dinode, &nbi, sizeof(nbi));
#else /* __linux__ */
spcl.c_dinode = *dp;