From: Tor Arvid Lund Date: Thu, 21 Aug 2008 21:11:40 +0000 (+0200) Subject: git-p4: Fix one-liner in p4_write_pipe function. X-Git-Tag: v1.6.0.1~8 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=893d340f2c735dc85b9360556ccd46cc0bf27fc0;p=git.git git-p4: Fix one-liner in p4_write_pipe function. The function built a p4 command string via the p4_build_cmd function, but ignored the result. Signed-off-by: Tor Arvid Lund Signed-off-by: Junio C Hamano --- diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index f9865b444..46136d49b 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -76,7 +76,7 @@ def write_pipe(c, str): def p4_write_pipe(c, str): real_cmd = p4_build_cmd(c) - return write_pipe(c, str) + return write_pipe(real_cmd, str) def read_pipe(c, ignore_error=False): if verbose: