summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/caddyhttp.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/caddyhttp/caddyhttp.go')
-rw-r--r--modules/caddyhttp/caddyhttp.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/caddyhttp/caddyhttp.go b/modules/caddyhttp/caddyhttp.go
index 379c8f2..41b0c66 100644
--- a/modules/caddyhttp/caddyhttp.go
+++ b/modules/caddyhttp/caddyhttp.go
@@ -5,7 +5,7 @@ import (
"crypto/tls"
"fmt"
"log"
- mathrand "math/rand"
+ weakrand "math/rand"
"net"
"net/http"
"strconv"
@@ -18,7 +18,7 @@ import (
)
func init() {
- mathrand.Seed(time.Now().UnixNano())
+ weakrand.Seed(time.Now().UnixNano())
err := caddy2.RegisterModule(caddy2.Module{
Name: "http",