]> Cypherpunks.ru repositories - nncp.git/blobdiff - src/cypherpunks.ru/nncp/cmd/nncp-mail/main.go
Fifx nncp-file -minsize specified in bytes, instead of KiBs
[nncp.git] / src / cypherpunks.ru / nncp / cmd / nncp-mail / main.go
index d14c3d66c077cb205d76f4f956a117e97005cd68..f5f4de791d1e8023d75f8b34a6eaeaed018896e4 100644 (file)
@@ -91,7 +91,13 @@ func main() {
                log.Fatalln("Can not read mail body from stdin:", err)
        }
 
-       if err = ctx.TxMail(node, nice, strings.Join(flag.Args()[1:], " "), body, int64(*minSize)*1024); err != nil {
+       if err = ctx.TxMail(
+               node,
+               nice,
+               strings.Join(flag.Args()[1:], " "),
+               body,
+               int64(*minSize)*1024,
+       ); err != nil {
                log.Fatalln(err)
        }
 }