Changes by: antona
Update of /cvsroot/linux-ntfs/ntfs-driver-tng/scripts
In directory usw-pr-cvs1:/tmp/cvs-serv1206
Modified Files:
rl.c
Log Message:
Add sstart everywhere.
Index: rl.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfs-driver-tng/scripts/rl.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -U2 -r1.6 -r1.7
--- rl.c 10 Feb 2002 20:28:35 -0000 1.6
+++ rl.c 10 Feb 2002 20:36:40 -0000 1.7
@@ -423,12 +423,12 @@
if (start)
if (finish)
- nrl = ntfs_rl_replace (drl, ds, srl, ss, dins);
+ nrl = ntfs_rl_replace (drl, ds, srl + sstart, ss, dins);
else
nrl = ntfs_rl_insert (drl, ds, srl + sstart, ss, dins);
else
if (finish)
- nrl = ntfs_rl_append (drl, ds, srl, ss, dins);
+ nrl = ntfs_rl_append (drl, ds, srl + sstart, ss, dins);
else
- nrl = ntfs_rl_split (drl, ds, srl, ss, dins);
+ nrl = ntfs_rl_split (drl, ds, srl + sstart, ss, dins);
}
|