]> Cypherpunks.ru repositories - nncp.git/blobdiff - src/pipe.go
Missed error checks
[nncp.git] / src / pipe.go
index 1b50573bf75fb983283452f9b2c746f844a7ab2d..e9295d483f24394cedee5088bfa20eeeb2e0414a 100644 (file)
@@ -1,6 +1,6 @@
 /*
 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
-Copyright (C) 2016-2020 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2016-2023 Sergey Matveev <stargrave@stargrave.org>
 
 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
@@ -68,6 +68,8 @@ func (c PipeConn) Close() (err error) {
        c.r.Close()
        err = c.w.Close()
        go c.cmd.Wait()
-       time.AfterFunc(time.Duration(10*time.Second), func() { c.cmd.Process.Kill() })
+       time.AfterFunc(time.Duration(10*time.Second), func() {
+               c.cmd.Process.Kill()
+       })
        return
 }