Commit 1f25fe95f8ba1bf7dc26860c69489c768595534a

Edward Thomson 2015-03-23T11:30:30

checkout: report correct invalid path

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/checkout.c b/src/checkout.c
index 713bc2c..7b683bb 100644
--- a/src/checkout.c
+++ b/src/checkout.c
@@ -1190,7 +1190,7 @@ static int checkout_verify_paths(
 
 	if (action & ~CHECKOUT_ACTION__REMOVE) {
 		if (!git_path_isvalid(repo, delta->new_file.path, flags)) {
-			giterr_set(GITERR_CHECKOUT, "Cannot checkout to invalid path '%s'", delta->old_file.path);
+			giterr_set(GITERR_CHECKOUT, "Cannot checkout to invalid path '%s'", delta->new_file.path);
 			return -1;
 		}
 	}