]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - rounds/transcodeWebP.go
Raise copyright years
[tofuproxy.git] / rounds / transcodeWebP.go
index 2939b08daf076deb2ae65d961c2b149af67f648e..95b409a3c3ffbfd97426b3dece6875eea5f65689 100644 (file)
@@ -1,6 +1,7 @@
 /*
-tofuproxy -- flexible HTTP/WARC 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"
@@ -45,7 +45,7 @@ func RoundTranscodeWebP(
        if resp.Header.Get("Content-Type") != "image/webp" || isXombrero(req) {
                return true, nil
        }
-       tmpFd, err := ioutil.TempFile("", "tofuproxy.*.webp")
+       tmpFd, err := os.CreateTemp("", "tofuproxy.*.webp")
        if err != nil {
                log.Fatalln(err)
        }