Code

show_patch_diff(): remove a call to fstat()
[git.git] / builtin-add.c
index ac98c8354d84a7f556c22c53fbe9007832ac4346..a23ad967737cc3473e28a954f5b2125b6aad794f 100644 (file)
@@ -148,7 +148,7 @@ static const char **validate_pathspec(int argc, const char **argv, const char *p
        if (pathspec) {
                const char **p;
                for (p = pathspec; *p; p++) {
-                       if (has_symlink_leading_path(strlen(*p), *p)) {
+                       if (has_symlink_leading_path(*p, strlen(*p))) {
                                int len = prefix ? strlen(prefix) : 0;
                                die("'%s' is beyond a symbolic link", *p + len);
                        }