]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - rounds/transcodeJXL.go
Raise copyright years
[tofuproxy.git] / rounds / transcodeJXL.go
index e8a962861c8edf026967244ad23bee43c5924398..7c2da99f08747c409162a7e1184b7ac75535a16a 100644 (file)
@@ -1,6 +1,7 @@
 /*
-tofuproxy -- HTTP proxy with TLS certificates management
-Copyright (C) 2021 Sergey Matveev <stargrave@stargrave.org>
+tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
+             manager, WARC/geminispace browser
+Copyright (C) 2021-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
@@ -20,7 +21,6 @@ package rounds
 import (
        "fmt"
        "io"
-       "io/ioutil"
        "log"
        "net/http"
        "os"
@@ -38,7 +38,7 @@ func transcodeCmd2Png(
        if resp.Header.Get("Content-Type") != contentType {
                return true, nil
        }
-       tmpFd, err := ioutil.TempFile("", "tofuproxy.*."+ext)
+       tmpFd, err := os.CreateTemp("", "tofuproxy.*."+ext)
        if err != nil {
                log.Fatalln(err)
        }
@@ -57,7 +57,7 @@ func transcodeCmd2Png(
        if err != nil {
                return false, err
        }
-       data, err := ioutil.ReadFile(dstFn)
+       data, err := os.ReadFile(dstFn)
        if err != nil {
                return false, err
        }