- refactored parametername from reserved keyword "export" to "exportname"
authorMemphis <memphis@machzwo.de>
Wed, 1 Jun 2011 16:05:18 +0000 (18:05 +0200)
committerMemphis <memphis@machzwo.de>
Wed, 1 Jun 2011 16:05:18 +0000 (18:05 +0200)
include/libnfs.h

index 8defc101acf3a7f6a676e2508cfac27cdcc3aa09..93f8c3c06c1acf8c43625dcee7c52decdbf0dd19 100644 (file)
@@ -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);