diff --git a/main.go b/main.go index 46244af..19623f6 100644 --- a/main.go +++ b/main.go @@ -115,7 +115,7 @@ func statusHandler(w http.ResponseWriter, r *http.Request) { status := fmt.Sprintf("OpenBSD created: %d:%d:%d:%d:%d:%d:%d:%d\nTimestamp: %d", years, months, weeks, hours, minutes, seconds, milliseconds, nanoseconds, - now.Unix()) + int(duration.Seconds())) fmt.Fprint(w, status) }