GIT_DIR_ENVIRONMENT is always a string literal --- commit db6b7c2ba5e59184de22c55b36c21b5ef94da325 tree dc809b653f9d7dcfa096ca763987ccb0e87599ba parent 16e46159b554116a7d95a206913fcdf7e79e07d0 author Peter Anvin Mon, 10 Oct 2005 12:33:51 -0700 committer Peter Anvin Mon, 10 Oct 2005 12:33:51 -0700 rsh.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/rsh.c b/rsh.c index 8278eab..64c4809 100644 --- a/rsh.c +++ b/rsh.c @@ -73,8 +73,7 @@ int setup_connection(int *fd_in, int *fd 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);