X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=upload.go;h=e9581081da4026261a8429daaa50b184db36399e;hb=e97a705ee3574ed3b4cf707f85fc2dff461d9365;hp=e46fa6db619715d3ecd85833648f120aeeedcdc4;hpb=cb0449b3d3da2498e360098694a556c882d454bd;p=gocheese.git diff --git a/upload.go b/upload.go index e46fa6d..e958108 100644 --- a/upload.go +++ b/upload.go @@ -39,7 +39,9 @@ func serveUpload(w http.ResponseWriter, r *http.Request) { http.Error(w, "unauthenticated", http.StatusUnauthorized) return } - auther, ok := passwords[username] + PasswordsM.RLock() + auther, ok := Passwords[username] + PasswordsM.RUnlock() if !ok || !auther.Auth(password) { log.Println(r.RemoteAddr, "unauthenticated", username) http.Error(w, "unauthenticated", http.StatusUnauthorized)