Changes by: szaka
Update of /cvsroot/linux-ntfs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2463
Modified Files:
ChangeLog configure.ac
Log Message:
ntfsclone: check available free space on the destination
Index: ChangeLog
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ChangeLog,v
retrieving revision 1.331
retrieving revision 1.332
diff -u -p -r1.331 -r1.332
--- ChangeLog 7 Nov 2005 20:37:07 -0000 1.331
+++ ChangeLog 7 Nov 2005 20:49:18 -0000 1.332
@@ -67,6 +67,8 @@ xx/xx/2005 - 1.12.2-WIP
block devices, FIFOs and sockets) to layout.h. Teech ntfsmount to
handle them. (Yura)
- Fix allocated data size for resident attributes. (Yura)
+ - ntfsclone: check available free space on the destination before
+ starting to clone or restore. (Szaka)
10/10/2005 - 1.12.1 - Minor fix to location of mount.ntfs-fuse and mkfs.ntfs.
Index: configure.ac
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/configure.ac,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -p -r1.91 -r1.92
--- configure.ac 16 Oct 2005 23:33:04 -0000 1.91
+++ configure.ac 7 Nov 2005 20:49:18 -0000 1.92
@@ -311,8 +311,9 @@ AC_CHECK_HEADERS([ctype.h fcntl.h libint
stddef.h stdint.h stdlib.h stdio.h stdarg.h string.h strings.h \
errno.h time.h unistd.h utime.h wchar.h getopt.h features.h endian.h \
byteswap.h sys/byteorder.h sys/endian.h sys/param.h sys/ioctl.h \
- sys/mount.h sys/stat.h sys/types.h sys/vfs.h linux/major.h linux/fd.h \
- linux/hdreg.h machine/endian.h gcrypt.h windows.h gnutls/pkcs12.h])
+ sys/mount.h sys/stat.h sys/types.h sys/vfs.h sys/statvfs.h \
+ linux/major.h linux/fd.h linux/hdreg.h machine/endian.h gcrypt.h \
+ windows.h gnutls/pkcs12.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
|