From d6ced294d8121778f23965c7b0e431ee0e05fd2b Mon Sep 17 00:00:00 2001 From: Memphis Date: Wed, 1 Jun 2011 18:05:18 +0200 Subject: [PATCH] - refactored parametername from reserved keyword "export" to "exportname" --- include/libnfs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/libnfs.h b/include/libnfs.h index 8defc10..93f8c3c 100644 --- a/include/libnfs.h +++ b/include/libnfs.h @@ -93,14 +93,14 @@ size_t nfs_get_writemax(struct nfs_context *nfs); * -errno : An error occured. * data is the error string. */ -int nfs_mount_async(struct nfs_context *nfs, const char *server, const char *export, nfs_cb cb, void *private_data); +int nfs_mount_async(struct nfs_context *nfs, const char *server, const char *exportname, nfs_cb cb, void *private_data); /* * Sync nfs mount. * Function returns * 0 : The operation was successfull. * -errno : The command failed. */ -int nfs_mount_sync(struct nfs_context *nfs, const char *server, const char *export); +int nfs_mount_sync(struct nfs_context *nfs, const char *server, const char *exportname); -- 2.34.1