]> Cypherpunks.ru repositories - govpn.git/blobdiff - src/govpn/common.go
Fix typo in code comment
[govpn.git] / src / govpn / common.go
index 263ef45941ef94cc2f591b93d24b0dc81e699997..e40641c956a634fcfb3567d0e85b92e5e2643a03 100644 (file)
@@ -53,7 +53,7 @@ func ScriptCall(path, ifaceName string) ([]byte, error) {
        return out, err
 }
 
-// Zero each byte
+// Zero each byte.
 func sliceZero(data []byte) {
        for i := 0; i < len(data); i++ {
                data[i] = '\x00'