diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index cce6239b9e..0f819b4a41 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,9 @@ +2009-03-12 Santosh G Vattam + + PR 1378/filesystem + * libfs/src/imfs/deviceio.c: IMFS device lseek should return the + current offset. + 2009-03-12 Joel Sherrill * ftpd/ftpd.h: Add extern C. diff --git a/cpukit/libfs/src/imfs/deviceio.c b/cpukit/libfs/src/imfs/deviceio.c index 719b3e830c..62b1381233 100644 --- a/cpukit/libfs/src/imfs/deviceio.c +++ b/cpukit/libfs/src/imfs/deviceio.c @@ -215,7 +215,7 @@ off_t device_lseek( int whence ) { - return 0; + return offset; } /*