From: Memphis Date: Wed, 1 Jun 2011 16:05:18 +0000 (+0200) Subject: - refactored parametername from reserved keyword "export" to "exportname" X-Git-Tag: upstream/1.9.6^2~409^2~3 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=d6ced294d8121778f23965c7b0e431ee0e05fd2b;p=deb_libnfs.git - refactored parametername from reserved keyword "export" to "exportname" --- 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);