From: Ralf Baechle Date: Thu, 13 Oct 2005 17:01:38 +0000 (-0700) Subject: rsh.c: typo fix X-Git-Tag: v0.99.8d~7^2~2 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=257380896fa4d11f6b6d7773f18c153001a95b60;p=git.git rsh.c: typo fix Example in a comment used a wrong environment variable. Signed-off-by: Ralf Baechle Signed-off-by: Junio C Hamano --- diff --git a/rsh.c b/rsh.c index bad5cff2..1fef6da5 100644 --- a/rsh.c +++ b/rsh.c @@ -104,7 +104,7 @@ int setup_connection(int *fd_in, int *fd_out, const char *remote_prog, if (!path) { return error("Bad URL: %s", url); } - /* $GIT_RSH "env GIR_DIR= " */ + /* $GIT_RSH "env GIT_DIR= " */ sizen = COMMAND_SIZE; posn = command; of = 0;