X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=src%2Fpipe.go;h=e9295d483f24394cedee5088bfa20eeeb2e0414a;hb=800af0f8c2dfc1ac8582cb18a021dddf75199adf;hp=ef25a9115a8319ed951579345a2a8a785ab1dcc0;hpb=fa24572f1280b56977c6dcf6969a736403d1280e;p=nncp.git diff --git a/src/pipe.go b/src/pipe.go index ef25a91..e9295d4 100644 --- a/src/pipe.go +++ b/src/pipe.go @@ -1,6 +1,6 @@ /* NNCP -- Node to Node copy, utilities for store-and-forward data exchange -Copyright (C) 2016-2021 Sergey Matveev +Copyright (C) 2016-2023 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -65,11 +65,11 @@ func (c PipeConn) SetWriteDeadline(t time.Time) error { } func (c PipeConn) Close() (err error) { - err = c.r.Close() + c.r.Close() err = c.w.Close() go c.cmd.Wait() time.AfterFunc(time.Duration(10*time.Second), func() { - c.cmd.Process.Kill() // #nosec G104 + c.cmd.Process.Kill() }) return }