diff options
author | Matthieu Moy <Matthieu.Moy@imag.fr> | 2009-08-21 10:57:58 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-08-21 20:45:40 -0700 |
commit | 43673fddd3c8a0e2cadc8ba724552531fac55464 (patch) | |
tree | ad664bf510f9207345692ad28e58710581ab504d /builtin-reset.c | |
parent | 044239b0a1fbdcccefafe1dab5f9c21e5a2a9150 (diff) | |
download | git-43673fddd3c8a0e2cadc8ba724552531fac55464.tar.gz |
Rename REFRESH_SAY_CHANGED to REFRESH_IN_PORCELAIN.
The change in the output is going to become more general than just saying
"changed", so let's make the variable name more general too.
Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-reset.c')
-rw-r--r-- | builtin-reset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin-reset.c b/builtin-reset.c index 5fa1789d0c..ddf68d56a9 100644 --- a/builtin-reset.c +++ b/builtin-reset.c @@ -261,7 +261,7 @@ int cmd_reset(int argc, const char **argv, const char *prefix) die("Cannot do %s reset with paths.", reset_type_names[reset_type]); return read_from_tree(prefix, argv + i, sha1, - quiet ? REFRESH_QUIET : REFRESH_SAY_CHANGED); + quiet ? REFRESH_QUIET : REFRESH_IN_PORCELAIN); } if (reset_type == NONE) reset_type = MIXED; /* by default */ @@ -302,7 +302,7 @@ int cmd_reset(int argc, const char **argv, const char *prefix) break; case MIXED: /* Report what has not been updated. */ update_index_refresh(0, NULL, - quiet ? REFRESH_QUIET : REFRESH_SAY_CHANGED); + quiet ? REFRESH_QUIET : REFRESH_IN_PORCELAIN); break; } |