summaryrefslogtreecommitdiffstats
path: root/support/include
diff options
context:
space:
mode:
authorneilbrown <neilbrown>2000-08-23 01:17:52 +0000
committerneilbrown <neilbrown>2000-08-23 01:17:52 +0000
commit82d42dffa84fb884684f75769ca13668c5188a5e (patch)
tree66d5ee003f36756f622dfdb8677f35a2de9e3852 /support/include
parentda25e1aa006bafb4dd08e2ffedbd42d7c1f4036b (diff)
downloadnfs-utils-82d42dffa84fb884684f75769ca13668c5188a5e.tar.gz
nfs-utils-82d42dffa84fb884684f75769ca13668c5188a5e.tar.xz
nfs-utils-82d42dffa84fb884684f75769ca13668c5188a5e.zip
1/ be less trusting of information in /var/lib/nfs/xtab. Add things to
kernel even if they are in here. 2/ O_CREAT [ex]log when locking for write incase they don't exist 3/ added etc/debian diretory with some files
Diffstat (limited to 'support/include')
-rw-r--r--support/include/exportfs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/include/exportfs.h b/support/include/exportfs.h
index d440dc1..3ca248e 100644
--- a/support/include/exportfs.h
+++ b/support/include/exportfs.h
@@ -36,8 +36,8 @@ typedef struct mexport {
struct mexport * m_next;
struct mclient * m_client;
struct exportent m_export;
- int m_exported : 1, /* known to knfsd */
- m_xtabent : 1, /* xtab entry exists */
+ int m_exported; /* known to knfsd. -1 means not sure */
+ int m_xtabent : 1, /* xtab entry exists */
m_mayexport: 1, /* derived from xtabbed */
m_changed : 1; /* options (may) have changed */
} nfs_export;