ZDR: remove dependency on zdr.h from the examples and nfs-ls
[deb_libnfs.git] / examples / nfs-cp.c
index 62724dfefe4ed00c3dd1bcfb79b7726ef8e57d89..bbd136a91c1dbddfbf4f7123df0ded70ac02b74a 100644 (file)
@@ -49,7 +49,6 @@ WSADATA wsaData;
 #include <stdint.h>
 #include <sys/types.h>
 #include <fcntl.h>
-#include "libnfs-zdr.h"
 #include "libnfs.h"
 #include "libnfs-raw.h"
 #include "libnfs-raw-mount.h"
@@ -132,6 +131,7 @@ open_file(const char *url, int flags)
        file_context->fd     = -1;
        file_context->nfs    = NULL;
        file_context->nfsfh  = NULL;
+       file_context->url    = NULL;
        
        if (strncmp(url, "nfs://", 6)) {
                file_context->is_nfs = 0;
@@ -260,7 +260,7 @@ int main(int argc, char *argv[])
 
                off += count;
        }
-       printf("copied %d bytes\n", (int)count);
+       printf("copied %d bytes\n", (int)off);
 
        free_file_context(src);
        free_file_context(dst);