Re: [PATCH] git-p4: fix problem when p4 login is not necessary

2019-01-07 Thread Junio C Hamano
Luke Diamand writes: > On Mon, 7 Jan 2019 at 20:51, Peter Osterlund > wrote: >> >> In a perforce setup where login is not required, communication fails >> because p4_check_access does not understand the response from the p4 >> client. Fixed by detecting and ignoring the "info" response. > > Thi

Re: [PATCH] git-p4: fix problem when p4 login is not necessary

2019-01-07 Thread Luke Diamand
On Mon, 7 Jan 2019 at 20:51, Peter Osterlund wrote: > > In a perforce setup where login is not required, communication fails > because p4_check_access does not understand the response from the p4 > client. Fixed by detecting and ignoring the "info" response. This is caused by my earlier change in

[PATCH] git-p4: fix problem when p4 login is not necessary

2019-01-07 Thread Peter Osterlund
In a perforce setup where login is not required, communication fails because p4_check_access does not understand the response from the p4 client. Fixed by detecting and ignoring the "info" response. Signed-off-by: Peter Osterlund --- git-p4.py | 2 ++ 1 file changed, 2 insertions(+) diff --g