Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs
In directory usw-pr-cvs1:/tmp/cvs-serv23262
Modified Files:
ChangeLog config.h.in configure configure.in
Log Message:
Fix detection of read-only mounts in volume.c::ntfs_check_mnteent().
Index: ChangeLog
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -U2 -r1.56 -r1.57
--- ChangeLog 1 Jun 2002 00:41:44 -0000 1.56
+++ ChangeLog 2 Jun 2002 13:57:58 -0000 1.57
@@ -81,4 +81,5 @@
ntfs_attr_p{read,write}(), -> read done, write not yet
ntfs_attr_mst_p{read,write}(). -> read done, write not yet
+ - Fix detection of read-only mounts in volume.c::ntfs_check_mnteent().
12/03/2002 - 1.6.0 - More mkntfs options and cleanups.
Index: config.h.in
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/config.h.in,v
retrieving revision 1.19
retrieving revision 1.20
diff -U2 -r1.19 -r1.20
--- config.h.in 29 Apr 2002 13:00:31 -0000 1.19
+++ config.h.in 2 Jun 2002 13:57:59 -0000 1.20
@@ -49,4 +49,7 @@
#undef HAVE_GETMNTENT
+/* Define if you have the hasmntent function. */
+#undef HAVE_HASMNTENT
+
/* Define if you have the ioctl function. */
#undef HAVE_IOCTL
Index: configure
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/configure,v
retrieving revision 1.33
retrieving revision 1.34
diff -U2 -r1.33 -r1.34
--- configure 1 Jun 2002 00:41:45 -0000 1.33
+++ configure 2 Jun 2002 13:57:59 -0000 1.34
@@ -6122,5 +6122,5 @@
strerror malloc calloc free realloc open close read write lseek \
fdatasync ioctl fflush atexit exit time srandom random wcrtomb \
- mbrtowc mbsrtowcs setmntent getmntent endmntent
+ mbrtowc mbsrtowcs setmntent getmntent endmntent hasmntent
do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
Index: configure.in
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/configure.in,v
retrieving revision 1.29
retrieving revision 1.30
diff -U2 -r1.29 -r1.30
--- configure.in 8 May 2002 05:49:35 -0000 1.29
+++ configure.in 2 Jun 2002 13:57:59 -0000 1.30
@@ -114,5 +114,5 @@
strerror malloc calloc free realloc open close read write lseek \
fdatasync ioctl fflush atexit exit time srandom random wcrtomb \
- mbrtowc mbsrtowcs setmntent getmntent endmntent)
+ mbrtowc mbsrtowcs setmntent getmntent endmntent hasmntent)
dnl Perform program name transformation.
|