git-remote-mediawiki: allow a domain to be set for authentication
[gitweb.git] / builtin / ls-tree.c
index 4290723392141938c7099eaa870bd05754f41ec4..6b666e1e87017f41d2f53c50b157f280b3a5f282 100644 (file)
@@ -168,11 +168,10 @@ int cmd_ls_tree(int argc, const char **argv, const char *prefix)
 
        init_pathspec(&pathspec, get_pathspec(prefix, argv + 1));
        for (i = 0; i < pathspec.nr; i++)
-               pathspec.items[i].has_wildcard = 0;
+               pathspec.items[i].use_wildcard = 0;
+       pathspec.has_wildcard = 0;
        tree = parse_tree_indirect(sha1);
        if (!tree)
                die("not a tree object");
-       read_tree_recursive(tree, "", 0, 0, &pathspec, show_tree, NULL);
-
-       return 0;
+       return !!read_tree_recursive(tree, "", 0, 0, &pathspec, show_tree, NULL);
 }