X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ffuse_nfs.c;h=28449eec4c88c52d7520e5cf4b4b4668ea7d23ac;hb=7e967f4de21a863bc51d9107c05b6b523fcce1db;hp=fa30764d2e1e5a4f46dd3256c167e45047173482;hpb=8ca7b275f81a8bea97290e90edd8aa2e127dc697;p=deb_libnfs.git diff --git a/examples/fuse_nfs.c b/examples/fuse_nfs.c index fa30764..28449ee 100644 --- a/examples/fuse_nfs.c +++ b/examples/fuse_nfs.c @@ -31,8 +31,6 @@ #define discard_const(ptr) ((void *)((intptr_t)(ptr))) -FILE *fh=NULL; - struct nfs_context *nfs = NULL; static int fuse_nfs_getattr(const char *path, struct stat *stbuf) @@ -122,8 +120,6 @@ static int fuse_nfs_create(const char *path, mode_t mode, struct fuse_file_info fi->fh = (uint64_t)nfsfh; -//nfs_chown - return ret; } @@ -195,7 +191,7 @@ static struct fuse_operations nfs_oper = { void print_usage(char *name) { - printf("Usage: %s [-?|--help] [-n|--nfs-share=nfs-url] mountpoint\n", + printf("Usage: %s [-?|--help] [-n|--nfs-share=nfs-url] [-m|--mountpoint=mountpoint]\n", name); exit(0); } @@ -252,11 +248,13 @@ int main(int argc, char *argv[]) if (url == NULL) { fprintf(stderr, "-n was not specified.\n"); + print_usage(argv[0]); ret = 10; goto finished; } if (mnt == NULL) { fprintf(stderr, "-m was not specified.\n"); + print_usage(argv[0]); ret = 10; goto finished; }