summaryrefslogtreecommitdiff
path: root/entry.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-07-22 11:23:30 -0700
committerJunio C Hamano <gitster@pobox.com>2013-07-22 11:23:30 -0700
commit4ca8ae712c1bf73bf41247aed119a44acc01de03 (patch)
treea31a86941bf1d33c3230bf299fe5458d3f6c0515 /entry.c
parente2ecd252b5e3c90c211075ba9d1017379782708b (diff)
parent465cf8ce453dc3e266171ece2ea886acd8c7d714 (diff)
downloadgit-4ca8ae712c1bf73bf41247aed119a44acc01de03.tar.gz
Merge branch 'tr/do-not-call-submodules-subprojects'
* tr/do-not-call-submodules-subprojects: show-branch: fix description of --date-order apply, entry: speak of submodules instead of subprojects
Diffstat (limited to 'entry.c')
-rw-r--r--entry.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/entry.c b/entry.c
index d7c131d453..6af4b6a0c3 100644
--- a/entry.c
+++ b/entry.c
@@ -199,9 +199,9 @@ static int write_entry(struct cache_entry *ce, char *path, const struct checkout
break;
case S_IFGITLINK:
if (to_tempfile)
- return error("cannot create temporary subproject %s", path);
+ return error("cannot create temporary submodule %s", path);
if (mkdir(path, 0777) < 0)
- return error("cannot create subproject directory %s", path);
+ return error("cannot create submodule directory %s", path);
break;
default:
return error("unknown file mode for %s in index", path);