]> git.proxmox.com Git - mirror_acme.sh.git/commitdiff
Typo
authorAlexander Kulumbeg <kulumbeg@gmail.com>
Thu, 4 Feb 2021 14:15:17 +0000 (15:15 +0100)
committerGitHub <noreply@github.com>
Thu, 4 Feb 2021 14:15:17 +0000 (15:15 +0100)
Forgot a quotation mark on line 161

dnsapi/dns_websupport.sh

index 5089d7c3ace21c5e06262650cf2da78737c90674..de3d8b71f7cf7c0f67df71762fe6e2dd83161141 100644 (file)
@@ -158,7 +158,7 @@ _ws_rest() {
   _debug2 api_secret "$WS_ApiSecret"
 
   timestamp=$(_time)
-  datez="$(_utc_date | sed "s/ /T/" | sed "s/$/+0000/")
+  datez="$(_utc_date | sed "s/ /T/" | sed "s/$/+0000/")"
   canonical_request="${me} ${pa} ${timestamp}"
   signature_hash=$(printf "%s" "$canonical_request" | _hmac sha1 "$WS_ApiSecret")
   basicauth="$(printf "%s:%s" "$WS_ApiKey" "$signature_hash" | _base64)"