projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dfa4647
)
sideband: do not use color, just say "remote:"
author
Junio C Hamano
<junkio@cox.net>
Thu, 3 Aug 2006 23:01:58 +0000
(16:01 -0700)
committer
Junio C Hamano
<junkio@cox.net>
Thu, 3 Aug 2006 23:01:58 +0000
(16:01 -0700)
... per suggestion by Andrew.
Signed-off-by: Junio C Hamano <junkio@cox.net>
fetch-clone.c
patch
|
blob
|
history
diff --git
a/fetch-clone.c
b/fetch-clone.c
index 692d9b750d50d6b739bdcf6ae2bcbb17ca379d99..5e84c4620ff96f5c7ab93e5f3bfd10609edd5fd5 100644
(file)
--- a/
fetch-clone.c
+++ b/
fetch-clone.c
@@
-129,14
+129,13
@@
static pid_t setup_sideband(int sideband, const char *me, int fd[2], int xd[2])
len--;
switch (buf[0] & 0xFF) {
case 3:
+ safe_write(2, "remote: ", 8);
safe_write(2, buf+1, len);
-
fprintf(stderr, "\n"
);
+
safe_write(2, "\n", 1
);
exit(1);
case 2:
- /* color sideband */
- safe_write(2, "\033[44;37;1m", 10);
+ safe_write(2, "remote: ", 8);
safe_write(2, buf+1, len);
- safe_write(2, "\033[m", 3);
continue;
case 1:
safe_write(fd[1], buf+1, len);