Skip to content

Commit

Permalink
update-index: work with c-quoted name
Browse files Browse the repository at this point in the history
update-index --stdin did not work with c-style quoted names even though
update-index --index-info did.  This fixes the inconsistency.

Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Junio C Hamano committed Jan 11, 2006
1 parent d5a6aaf commit a94d994
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion update-index.c
Original file line number Diff line number Diff line change
Expand Up @@ -534,10 +534,17 @@ int main(int argc, const char **argv)
struct strbuf buf;
strbuf_init(&buf);
while (1) {
char *path_name;
read_line(&buf, stdin, line_termination);
if (buf.eof)
break;
update_one(buf.buf, prefix, prefix_length);
if (line_termination && buf.buf[0] == '"')
path_name = unquote_c_style(buf.buf, NULL);
else
path_name = buf.buf;
update_one(path_name, prefix, prefix_length);
if (path_name != buf.buf)
free(path_name);
}
}
if (active_cache_changed) {
Expand Down

0 comments on commit a94d994

Please sign in to comment.