mirror of
https://github.com/rclone/rclone.git
synced 2026-01-04 01:23:24 +00:00
Fix after go vet
This commit is contained in:
2
fs_s3.go
2
fs_s3.go
@@ -88,7 +88,7 @@ func s3Connection() (*s3.S3, error) {
|
||||
if *awsSecretAccessKey == "" {
|
||||
return nil, errors.New("Need -aws-secret-access-key or environmental variable AWS_SECRET_ACCESS_KEY")
|
||||
}
|
||||
auth := aws.Auth{*awsAccessKeyId, *awsSecretAccessKey}
|
||||
auth := aws.Auth{AccessKey: *awsAccessKeyId, SecretKey: *awsSecretAccessKey}
|
||||
|
||||
// FIXME look through all the regions by name and use one of them if found
|
||||
|
||||
|
||||
Reference in New Issue
Block a user