projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5fc32d3
)
debug fix
author
Miklos Szeredi
<miklos@szeredi.hu>
Tue, 6 Jul 2004 15:48:57 +0000
(15:48 +0000)
committer
Miklos Szeredi
<miklos@szeredi.hu>
Tue, 6 Jul 2004 15:48:57 +0000
(15:48 +0000)
ChangeLog
patch
|
blob
|
history
lib/fuse.c
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index b3676b8a7eaf6317aea99ff7ebb222146fa9c678..2c9298701b16380d3461bbe9a4700f7e5fefab79 100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-4,6
+4,8
@@
if FORGET was received earlier than the last RELEASE (bug found
with the LTP test-suite)
+ * Minor fix in read: print debug info even if read size is zero
+
2004-07-04 Miklos Szeredi <mszeredi@inf.bme.hu>
* Fix race between truncate and writepage (fsx-linux now runs
diff --git
a/lib/fuse.c
b/lib/fuse.c
index ad0aaed66eab6e9b7537ee31f80e6e0fe1714c0a..7ab996b9e7a484ccbff121c9115429d19eec5bf8 100644
(file)
--- a/
lib/fuse.c
+++ b/
lib/fuse.c
@@
-806,7
+806,7
@@
static void do_read(struct fuse *f, struct fuse_in_header *in,
}
size = 0;
- if(res > 0) {
+ if(res >
=
0) {
size = res;
res = 0;
if(f->flags & FUSE_DEBUG) {