diff options
author | H. Peter Anvin <hpa@zytor.com> | 2005-10-10 14:46:12 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-10 14:46:12 -0700 |
commit | 977ed47d86c40683a1b84f5226d589e924e95785 (patch) | |
tree | d1a27a2660c908f23af6956e7e980aa656d9b3d6 | |
parent | 77d604c30974587a2e0d36d92c48cef87f6e8e4d (diff) | |
download | git-977ed47d86c40683a1b84f5226d589e924e95785.tar.gz git-977ed47d86c40683a1b84f5226d589e924e95785.tar.xz |
Trivial optimization
GIT_DIR_ENVIRONMENT is always a string literal
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | rsh.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -109,8 +109,7 @@ int setup_connection(int *fd_in, int *fd_out, const char *remote_prog, posn = command; of = 0; of |= add_to_string(&posn, &sizen, "env ", 0); - of |= add_to_string(&posn, &sizen, GIT_DIR_ENVIRONMENT, 0); - of |= add_to_string(&posn, &sizen, "=", 0); + of |= add_to_string(&posn, &sizen, GIT_DIR_ENVIRONMENT "=", 0); of |= add_to_string(&posn, &sizen, path, 1); of |= add_to_string(&posn, &sizen, " ", 0); of |= add_to_string(&posn, &sizen, remote_prog, 1); |