K 10 svn:author V 3 mjg K 8 svn:date V 27 2020-11-25T22:53:21.727415Z K 7 svn:log V 366 pipe: follow up cleanup to previous The commited patch was incomplete. - add back missing goto retry, noted by jhb - 'if (error)' -> 'if (error != 0)' - consistently do: if (error != 0) break; continue; instead of: if (error != 0) break; else continue; This adds some 'continue' uses which are not needed, but line up with the rest of pipe_write. END