Fix some compiler warnings and bugs
authorRonnie Sahlberg <ronniesahlberg@gmail.com>
Thu, 26 Dec 2013 18:40:37 +0000 (10:40 -0800)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Thu, 26 Dec 2013 18:40:37 +0000 (10:40 -0800)
Add missing %s to two example programs and fix incorrect argument to
rpc_nfs3_fsinfo_async()

examples/nfs-ls.c
examples/nfsclient-sync.c
lib/libnfs.c
nfs/nfs.c

index 6efbbd6b37b287dca7258679128d5b654f00800b..e87ffa82b91cc11162d52629037398e02a0bd4df 100644 (file)
@@ -100,7 +100,7 @@ void process_dir(struct nfs_context *nfs, char *dir, int level) {
        
        ret = nfs_opendir(nfs, dir, &nfsdir);
        if (ret != 0) {
-               printf("Failed to opendir(\"%s\")\n", dir, nfs_get_error(nfs));
+               printf("Failed to opendir(\"%s\") %s\n", dir, nfs_get_error(nfs));
                exit(10);
        }
        while((nfsdirent = nfs_readdir(nfs, nfsdir)) != NULL) {
index 9ca58b467c8461f97c9043d1fcc120d2edd0416c..29a4daf3dc9c24e3a7f53532155624ff622f3c3f 100644 (file)
@@ -163,7 +163,7 @@ int main(int argc, char *argv[])
 
        ret = nfs_opendir(nfs, "/", &nfsdir);
        if (ret != 0) {
-               printf("Failed to opendir(\"/\")\n", nfs_get_error(nfs));
+               printf("Failed to opendir(\"/\") %s\n", nfs_get_error(nfs));
                exit(10);
        }
        while((nfsdirent = nfs_readdir(nfs, nfsdir)) != NULL) {
@@ -212,7 +212,7 @@ int main(int argc, char *argv[])
                        "-w"[!!(st.st_mode & S_IWOTH)],
                        "-x"[!!(st.st_mode & S_IXOTH)]
                );
-               printf(" %2d", st.st_nlink);
+               printf(" %2d", (int)st.st_nlink);
                printf(" %5d", st.st_uid);
                printf(" %5d", st.st_gid);
                printf(" %12" PRId64, st.st_size);
index 7f4cab6519244d908d423dd27e2c9bbe9815d499..77645b140f0e17e18c8b372867f63ca478a14584 100644 (file)
@@ -652,7 +652,7 @@ static void nfs_mount_7_cb(struct rpc_context *rpc, int status, void *command_da
                return;
        }
 
-       if (rpc_nfs_null_async(rpc, nfs_mount_8_cb, data) != 0) {
+       if (rpc_nfs3_null_async(rpc, nfs_mount_8_cb, data) != 0) {
                data->cb(-ENOMEM, nfs, command_data, data->private_data);
                free_nfs_cb_data(data);
                return;
index ab8e4dfcf9a520c3e065e29b21ddb1a9b8993e16..a97d40ab7d543e6d8a37ce97b7a5d5665a3dd852 100644 (file)
--- a/nfs/nfs.c
+++ b/nfs/nfs.c
@@ -771,7 +771,7 @@ int rpc_nfs_fsinfo_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh,
        args.fsroot.data.data_len = fh->data.data_len; 
        args.fsroot.data.data_val = fh->data.data_val; 
 
-       return rpc_nfs3_fsinfo_async(rpc, cb, fh, private_data);
+       return rpc_nfs3_fsinfo_async(rpc, cb, &args, private_data);
 }
 
 int rpc_nfs3_readlink_async(struct rpc_context *rpc, rpc_cb cb, READLINK3args *args, void *private_data)