diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2010-06-22 12:43:55 -0400 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2010-06-22 16:04:53 -0400 |
commit | 8940675a20967145b37a596334c25a54804435cc (patch) | |
tree | ae7781137ec1b4a4f7fad34b420fe4495791ad6e /support/include | |
parent | 0509d3428f523776ddd9d6e9fa318587d3ec7d84 (diff) | |
download | nfs-utils-8940675a20967145b37a596334c25a54804435cc.tar.gz nfs-utils-8940675a20967145b37a596334c25a54804435cc.tar.xz nfs-utils-8940675a20967145b37a596334c25a54804435cc.zip |
libexport.a: Make export_read() return void
Clean up: export_read()'s return value is always zero, and its only
caller never checks it.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'support/include')
-rw-r--r-- | support/include/exportfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/include/exportfs.h b/support/include/exportfs.h index 0da8566..8e54833 100644 --- a/support/include/exportfs.h +++ b/support/include/exportfs.h @@ -128,7 +128,7 @@ struct addrinfo * client_resolve(const struct sockaddr *sap); int client_member(const char *client, const char *name); -int export_read(char *fname); +void export_read(char *fname); void export_add(nfs_export *); void export_reset(nfs_export *); nfs_export * export_lookup(char *hname, char *path, int caconical); |