Browse Source

Fix #252

for-closed-social
Eryx 10 years ago
parent
commit
d5d04a66f3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      models/publickey.go

+ 1
- 1
models/publickey.go View File

@ -161,7 +161,7 @@ func rewriteAuthorizedKeys(key *PublicKey, p, tmpP string) error {
}
defer fr.Close()
fw, err := os.Create(tmpP)
fw, err := os.OpenFile(tmpP, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0600)
if err != nil {
return err
}

Loading…
Cancel
Save