[fix] - fix improper definition of struct AUTH from osx (caution - API change - not...
authorMemphiz <memphis@machzwo.de>
Sat, 8 Oct 2011 16:10:06 +0000 (18:10 +0200)
committerMemphiz <memphis@machzwo.de>
Sat, 8 Oct 2011 16:10:06 +0000 (18:10 +0200)
include/libnfs.h
lib/libnfs.c

index d3c7a9ad9c60ef8633dcb0e555e3b59375140130..9758a7814619c35ab44612871c1f249e493aa628 100644 (file)
@@ -18,6 +18,7 @@
  * This is the highlevel interface to access NFS resources using a posix-like interface
  */
 #include <stdint.h>
+#include <rpc/rpc.h>
 #include <rpc/auth.h>
 
 struct nfs_context;
@@ -63,7 +64,7 @@ EXTERN int nfs_queue_length(struct nfs_context *nfs);
 /*
  * Used if you need different credentials than the default for the current user.
  */
-EXTERN void nfs_set_auth(struct nfs_context *nfs, struct AUTH *auth);
+EXTERN void nfs_set_auth(struct nfs_context *nfs, AUTH *auth);
 
 
 /*
index 2f7ce09004f069629eb88f46e37fd7295b1d5b67..a4b4a62d4f79576aca7b994ac4d25abec93a5be6 100644 (file)
@@ -111,7 +111,7 @@ struct nfs_mcb_data {
 static int nfs_lookup_path_async_internal(struct nfs_context *nfs, struct nfs_cb_data *data, struct nfs_fh3 *fh);
 
 
-void nfs_set_auth(struct nfs_context *nfs, struct AUTH *auth)
+void nfs_set_auth(struct nfs_context *nfs, AUTH *auth)
 {
        rpc_set_auth(nfs->rpc, auth);
 }