Browse Source

fix typo in error message

pull/2543/head
Sebastian Kurfuerst 3 years ago
parent
commit
eda4c43a08
  1. 2
      weed/security/guard.go

2
weed/security/guard.go

@ -123,5 +123,5 @@ func (g *Guard) checkWhiteList(w http.ResponseWriter, r *http.Request) error {
}
glog.V(0).Infof("Not in whitelist: %s", r.RemoteAddr)
return fmt.Errorf("Not in whitelis: %s", r.RemoteAddr)
return fmt.Errorf("Not in whitelist: %s", r.RemoteAddr)
}
Loading…
Cancel
Save