summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2005-12-02 23:29:02 +0000
committerThomas Schwinge <tschwinge@gnu.org>2005-12-02 23:29:02 +0000
commitcaa62e34813fdc001a5b5f470adcdd4cfe051b36 (patch)
treed1a2537a3ec27a9437bd9daaccd2bffbe69b1443
parent6edc75150cc163ea70ffae0d4396dadbce09cdfa (diff)
Remove no longer used variable.
-rw-r--r--netfs.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/netfs.c b/netfs.c
index 451bac32d..ac658a9c1 100644
--- a/netfs.c
+++ b/netfs.c
@@ -36,10 +36,6 @@
/* fuse_dirhandle, passed to ops->getdir to store our information */
struct fuse_dirhandle {
- /*** stuff needed for attempt_lookup *********************/
- unsigned found :1;
-
- /*** things needed for get_dirents ***********************/
int first_entry; /* index of first entry to return (counted down
* in helper function) */
int num_entries; /* number of further entries we may write out to the
@@ -50,7 +46,6 @@ struct fuse_dirhandle {
size_t maxlen; /* (allocated) length of filename field, def 256 */
struct netnode *parent; /* netnode of the dir which's content we list */
- /*** things used here and there **************************/
char *abspath;
char *filename;
};