szaka
9f50872ec2
Spelling typos, Debian bug #300073
2005-07-12 16:18:10 +00:00
flatcap
40f00bd76b
another bmp test
...
fix bmp handling again
fix dt commit for iroot
fix dt root replace
rm now cleanly removes last dir entry
2005-07-11 11:54:38 +00:00
szaka
4c2cfb2583
Rephrase mentioning "dirty" volumes so people hopefully won't think that
...
Windows repairs what ntfsresize damaged. The real function of leaving
the volume dirty is to make Windows create the backup boot sector because
we can't know where the partitioner will exactly resizes (they optionally
round to some cylinder boundary, defined by ad hoc, arbitrariy rules).
2005-07-10 23:09:02 +00:00
szaka
d37968ee84
Update ntfsfix manual
2005-07-10 22:44:00 +00:00
antona
f12ba9ab00
I am a muppet. I forgot to update the version number in configure.ac before
...
running autogen.sh last time. )-:
2005-07-10 21:47:23 +00:00
antona
47b52b54e3
Update changelog, fox more mkntfs bugs (thanks Timur!) and update build system
...
to SuSE 9.3 again.
2005-07-10 21:42:39 +00:00
cha0smaster
48af715f60
* Add check to auto scripts for FUSE to be >= 2.3.0.
...
* Move ntfsmount back to standard programs set.
2005-07-10 12:38:46 +00:00
antona
b942e2c03a
Move ntfsmount to extra programs as it doesn't even approximate being
...
compilable! (At least on my machine which has fuse 2.2.1.)
And I need a working snapshot for Timur.
2005-07-09 21:32:17 +00:00
antona
9cd8edce5f
mkntfs: Fix backup bootsector creation. Thanks to Timur Amirkhanov
...
for pointing this stupidity out. (We forgot to set the size before
doing it.) (Anton)
2005-07-09 21:24:02 +00:00
cha0smaster
9b483d4f42
ntfsinfo: add range check in EA dumping
...
ntfsmount: fix name in comment
2005-07-09 01:11:46 +00:00
cha0smaster
bfbb32f071
Dump every EA record only in verbose mode.
2005-07-09 00:59:30 +00:00
cha0smaster
0b060773f5
- layout.h: update info about EA's.
...
- ntfsinfo: dump EA and EA_INFORMATION attributes.
2005-07-09 00:09:53 +00:00
flatcap
5693c1fcfb
try removing the last entry in a dir (unsucessful, but close)
2005-07-08 18:45:44 +00:00
szaka
7145ab4b19
Document --bad-sectors of ntfsresize; update acknowledgement & known issues
2005-07-07 21:20:04 +00:00
flatcap
7a142ef54c
got bored. don't read the diffs.
2005-07-06 22:47:01 +00:00
cha0smaster
cb13f36956
Fix typos, patch from debian version of nftsprogs 1.9.4-2.
2005-07-05 16:34:15 +00:00
cha0smaster
1a088a4fdf
NEWS: update my name to be in format similar to names in other news.
2005-07-05 05:04:31 +00:00
cha0smaster
eb3639e0be
ntfsmount:
...
* Fix named data streams access interface.
* New option: succeed_chmod to avoid chmod errors.
2005-07-05 04:54:28 +00:00
cha0smaster
c3586d1d8c
Submit ntfsmount manual page.
...
As usual forgot "cvs new" before commit. :-)
2005-07-05 01:19:20 +00:00
cha0smaster
7553a8da53
* ntfsmount: change default fmask and dmask to 0177 and 0077 respectively.
...
* Update NEWS, ntfsprogs.8.in, .cvsignore
* Update build system to install nftsmount man page.
2005-07-05 01:18:02 +00:00
flatcap
a32e3eca7e
fix a few sign warnings
2005-07-04 16:34:14 +00:00
szaka
2af728c6c4
ntfsresize: support bad clusters list ($BadClus:$Bad)
2005-07-03 23:21:01 +00:00
cha0smaster
23181e4d49
../commit
2005-07-03 15:26:19 +00:00
cha0smaster
d31a69bb23
Use gete{u,g}id instead of get{u,g}id. (Thanks to Anton for suggestion.)
2005-07-03 13:07:15 +00:00
cha0smaster
9276557d28
- Change default fsname to "ntfs#device". (Suggested by Miklos Szeredi)
...
- Fix error handling when no dev option given.
2005-07-03 12:14:57 +00:00
cha0smaster
96f4a39aaf
ntfsmount: it's not a error when file didn't contain unnamed data attribute. E.g. $Secure.
2005-07-03 01:49:17 +00:00
cha0smaster
58f7b6b345
Forgot to commit ntfsmount itself. :-)
2005-07-03 00:35:48 +00:00
cha0smaster
3727a729c2
- Add new utility - ntfsmount. It's a FUSE module that rely on libntfs. So,
...
you need FUSE to compile it, xattr is also highly recommended. This module
support file overwrite changing it size and can list/read/write/add/remove
named data streams via xattr interface.
- Update auto{make,conf} stuff respectively.
2005-07-03 00:18:37 +00:00
cha0smaster
3adc040305
Add change protype of ntfs_attr_pwrite: make @b const.
2005-07-02 19:16:18 +00:00
cha0smaster
67731b14c8
Update changelog for changes that were lost after 1.10.0 release.
2005-07-02 18:30:46 +00:00
cha0smaster
9deb743974
Optimize a bit previous ntfs_inode_close fix.
2005-07-02 17:48:59 +00:00
cha0smaster
b8e1188102
Fix memory managament error in ntfs_inode_close. ntfs_extent_inode_open
...
allocates buffer for up to 4 extent inodes, to prevent many reallocates.
But ntfs_inode_close always reallocate buffer to store exactly @nr_extents
inodes. Bug will arise in following scenario:
1) ntfs_extent_inode_open (1 extent, allocate buffer for 4)
2) ntfs_extent_inode_open (2 extents, use already allocated buffer)
3) ntfs_inode_close(extent_ni) (1 extent, reallocate buffer for 1 extent)
4) ntfs_extent_inode_open (2 extents, don't reallocate buffer because it should be for 4 elements, but really it's for 1, write to unitialized space, segfault)
2005-07-02 13:58:02 +00:00
cha0smaster
fbe45ebac6
Fix valgrind varning about writing unitialized buffer.
2005-07-02 13:47:29 +00:00
szaka
3f7c609ab2
truncate_bitmap_data_attr(): no need to distinguish shrinkage & enlargement
2005-06-30 21:13:34 +00:00
szaka
fa2e20b14b
ntfsclone man: examples use gzip instead of bzip2; some clarifications
2005-06-28 21:09:35 +00:00
szaka
5e6227da65
Version is 1.10.1-WIP. Feel free to ./autogen.sh
2005-06-28 20:53:13 +00:00
szaka
307c9b43e2
ntfsresize: show device name -- useful for bug reports
2005-06-27 21:18:40 +00:00
szaka
60d0ed80a5
Detect and hint users if the destination fs doesn't support sparse files
2005-06-27 21:03:06 +00:00
szaka
70530ad551
ntfs_inode_close(): ElectricFence is unhappy with realloc(x,0) as free(x)
...
thus we distinguish these two cases
2005-06-27 20:30:09 +00:00
szaka
666619ff85
Trying to better guide lost people to the solutions of the non-ntfs
...
related partition table corruptions
2005-06-26 20:43:21 +00:00
szaka
f8dad91b81
Added ntfsclone's rescue capability
2005-06-26 20:11:03 +00:00
szaka
2afa525533
Added ntfscp
...
Updated ntfsfix and ntfsclone
Added Yuval Fledel and Yura Pakhuchiy to the list of authors
2005-06-26 20:09:26 +00:00
cha0smaster
1dce9cf4ea
NTFSCP: don't use printf inside signal handler.
2005-06-25 16:37:50 +00:00
szaka
d8dd64d425
Correct ntfs_inode_sync_file_name comment typos
2005-06-25 13:15:12 +00:00
flatcap
31c31a244d
ntfsrm:
...
fix a couple of crashes
slightly simplify bitmap logic
wasn't using mst pwrite for INDX
rm works again
bmp commit was overwriting end of attr
strip down bitmap set
bitmaps: handle cluster boundaries correctly
overhaul the bitmap code
ntfs_binary_print
2005-06-23 18:55:03 +00:00
cha0smaster
e5a90b161b
ntfscp: Fix signal handling.
2005-06-21 13:06:53 +00:00
antona
39b759ee99
Fix compiler warnings under cygwin.
2005-06-21 09:57:22 +00:00
antona
31a8750c4d
Fix compiler warnings in libntfs when compiling under cygwin.
2005-06-21 09:55:15 +00:00
antona
fb7586c5ac
Update todo files with usnjrnl stuff.
2005-06-20 14:44:45 +00:00
antona
ca873f0474
Eeek. Someone did a commit just as I was about to commit so the commit
...
message was lost! )-:
Now again...
Monster commit from me due to lack of time. Sorry about that.
Features:
- Version to 1.10.0
- Update readme, etc ready for release.
- Update build system to suse linux 9.3 versions.
- Fix warnings appearing for me on suse 9.3 with --enable-warnings --enable-debug.
- Set attr_name to NULL in libntfs/attrib.c::__ntfs_attr_init() and fixup all
callers apropriately. Thanks to FlatCap/Rich for pointing this out.
- Determine endianness in ./configure and use that in addition to existing
mechanisms for determining endianness.
2005-06-20 14:31:30 +00:00