summaryrefslogtreecommitdiff
path: root/builtin-add.c
diff options
context:
space:
mode:
authorBenoit Sigoure <tsuna@lrde.epita.fr>2007-09-14 08:29:04 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-09-14 21:30:05 (GMT)
commit43b98acc23306fd7fff888477937063361a09593 (patch)
treeafd20e933ba31c99c2905217f529992caaeaed47 /builtin-add.c
parent42b5f8693eddbbd486579fb2304db1bc7282ac26 (diff)
downloadgit-43b98acc23306fd7fff888477937063361a09593.zip
git-43b98acc23306fd7fff888477937063361a09593.tar.gz
git-43b98acc23306fd7fff888477937063361a09593.tar.bz2
Add test to check recent fix to "git add -u"
An earlier commit fixed type-change case in "git add -u". This adds a test to make sure we do not introduce regression. At the same time, it fixes a stupid typo in the error message. Signed-off-by: Benoit Sigoure <tsuna@lrde.epita.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-add.c')
-rw-r--r--builtin-add.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-add.c b/builtin-add.c
index 9847b7e..3d8b8b4 100644
--- a/builtin-add.c
+++ b/builtin-add.c
@@ -95,7 +95,7 @@ static void update_callback(struct diff_queue_struct *q,
const char *path = p->one->path;
switch (p->status) {
default:
- die("unexpacted diff status %c", p->status);
+ die("unexpected diff status %c", p->status);
case DIFF_STATUS_UNMERGED:
case DIFF_STATUS_MODIFIED:
case DIFF_STATUS_TYPE_CHANGED: