diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-10-13 10:01:38 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-13 10:01:38 -0700 |
commit | 257380896fa4d11f6b6d7773f18c153001a95b60 (patch) | |
tree | 0d7851fbf78c47aaa3005f47ba4bc83680a85fd3 /rsh.c | |
parent | df73e9c62a9f0e6cdf20f095b99abf32c8e65c75 (diff) | |
download | git-257380896fa4d11f6b6d7773f18c153001a95b60.tar.gz git-257380896fa4d11f6b6d7773f18c153001a95b60.tar.xz |
rsh.c: typo fix
Example in a comment used a wrong environment variable.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'rsh.c')
-rw-r--r-- | rsh.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 <host> "env GIR_DIR=<path> <remote_prog> <args...>" */ + /* $GIT_RSH <host> "env GIT_DIR=<path> <remote_prog> <args...>" */ sizen = COMMAND_SIZE; posn = command; of = 0; |