[PATCH] cleanup of in-code names

Fixes all in-code names that leaved during "big name change".

Signed-off-by: Alexey Nezhdanov <snake@penza-gsm.ru>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Alexey Nezhdanov
2005-05-19 15:17:16 +04:00
committed by Linus Torvalds
parent 9669e17a2f
commit 667bb59b2d
19 changed files with 50 additions and 50 deletions

View File

@ -39,7 +39,7 @@ static int merge_entry(int pos, const char *path)
int found;
if (pos >= active_nr)
die("merge-cache: %s not in the cache", path);
die("git-merge-cache: %s not in the cache", path);
arguments[0] = pgm;
arguments[1] = "";
arguments[2] = "";
@ -64,7 +64,7 @@ static int merge_entry(int pos, const char *path)
arguments[stage + 4] = ownbuf[stage];
} while (++pos < active_nr);
if (!found)
die("merge-cache: %s not in the cache", path);
die("git-merge-cache: %s not in the cache", path);
run_program();
return found;
}
@ -97,7 +97,7 @@ int main(int argc, char **argv)
int i, force_file = 0;
if (argc < 3)
usage("merge-cache [-o] <merge-program> (-a | <filename>*)");
usage("git-merge-cache [-o] <merge-program> (-a | <filename>*)");
read_cache();
@ -118,7 +118,7 @@ int main(int argc, char **argv)
merge_all();
continue;
}
die("merge-cache: unknown option %s", arg);
die("git-merge-cache: unknown option %s", arg);
}
merge_file(arg);
}