]> Cypherpunks.ru repositories - nncp.git/blobdiff - src/jobs.go
Raise copyright years
[nncp.git] / src / jobs.go
index 49df07b96e8b8c1f56445a040851644ff7fa18e6..16c95bfbbe2b7276499c912e0fb28a888c21c19c 100644 (file)
@@ -1,6 +1,6 @@
 /*
 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
-Copyright (C) 2016-2019 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2016-2020 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
@@ -21,7 +21,6 @@ import (
        "io"
        "os"
        "path/filepath"
-       "strconv"
 
        xdr "github.com/davecgh/go-xdr/xdr2"
 )
@@ -73,8 +72,8 @@ func (ctx *Ctx) Jobs(nodeId *NodeId, xx TRxTx) chan Job {
                                "xx":   string(xx),
                                "node": pktEnc.Sender,
                                "name": fi.Name(),
-                               "nice": strconv.Itoa(int(pktEnc.Nice)),
-                               "size": strconv.FormatInt(fi.Size(), 10),
+                               "nice": int(pktEnc.Nice),
+                               "size": fi.Size(),
                        }, "taken")
                        job := Job{
                                PktEnc:   &pktEnc,