Re: [sleuthkit-users] SleuthKit Make under Fedore Core 4
Brought to you by:
carrier
From: Brian C. <ca...@sl...> - 2005-06-29 13:41:10
|
On Jun 29, 2005, at 8:41 AM, Angus Marshall wrote: > On Wed Jun 29 13:29 , 'Conley, Tom' <tom...@us...> sent: > >> I am receiving the following error when attempting make of Sleuthkit >> under Fedora Core 4 >> any ideas?? >> >> ntfs.c : In function 'ntfs_proc_attseq': >> ntfs.c:770: error: invalid lvalue in assignment > > The compiler is barfing on the use of the cast on the lhs of the > assignment. I'm > working on a way round it now. You can either remove the '-Wall' from the OPT line in src/fstools/Makefile or replace line 770 of src/fstools/ntfs.c: (uintptr_t) attr = (uintptr_t) attr + getu32(fs, attr->len)) { with this: attr = (ntfs_attr *) ((uintptr_t) attr + getu32(fs, attr->len))) { I should have a new version out next week that already included this fix. brian |