X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=rpc%2Fconn.go;h=2dc2da7a0d5248d4792b72443abe8c24734cac8b;hb=791f34212ebd19a9c79c9bd1157f590f4b24f5c2;hp=3f7ade144c1c2905254da49eb7924552aa3c362d;hpb=fd97e8019e2ab166d9475ed59782c86247d8430b;p=safcm%2Fsafcm.git diff --git a/rpc/conn.go b/rpc/conn.go index 3f7ade1..2dc2da7 100644 --- a/rpc/conn.go +++ b/rpc/conn.go @@ -1,6 +1,6 @@ // Simple RPC-like protocol: implementation of connection and basic actions -// Copyright (C) 2021 Simon Ruderich +// Copyright (C) 2021-2022 Simon Ruderich // // 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 @@ -140,7 +140,7 @@ func (c *Conn) Kill() error { c.debugf("Kill: killing connection") - c.cmd.Process.Kill() + c.cmd.Process.Kill() //nolint:errcheck return c.wait() }