Skip to content

Commit

Permalink
Merge branch 'master' of github.com:OSGeo/gdal
Browse files Browse the repository at this point in the history
* 'master' of github.com:OSGeo/gdal:
  /vsiswift/: advertize missing options
  /vsivs/: advertize missing GS_NO_SIGN_REQUEST option
  /vsiaz/: advertize missing AZURE_NO_SIGN_REQUEST option
  Warp kernel: prevent potential int overflows for > 2 GB work buffers, and constify
  • Loading branch information
a0x8o committed Jun 10, 2022
1 parent ba1e26a commit bfdc83c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gdal/port/cpl_vsil_gs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ const char* VSIGSFSHandler::GetOptions()
"description='Secret access key. To use with GS_ACCESS_KEY_ID'/>"
" <Option name='GS_ACCESS_KEY_ID' type='string' "
"description='Access key id'/>"
" <Option name='GS_NO_SIGN_REQUEST' type='boolean' "
"description='Whether to disable signing of requests' default='NO'/>"
" <Option name='GS_OAUTH2_REFRESH_TOKEN' type='string' "
"description='OAuth2 refresh token. For OAuth2 client authentication. "
"To use with GS_OAUTH2_CLIENT_ID and GS_OAUTH2_CLIENT_SECRET'/>"
Expand Down Expand Up @@ -251,8 +253,8 @@ const char* VSIGSFSHandler::GetOptions()
"default='~/.aws/config'/>"
" <Option name='CPL_GS_CREDENTIALS_FILE' type='string' "
"description='Filename that contains Google Storage credentials' "
"default='~/.boto'/>" +
VSICurlFilesystemHandler::GetOptionsStatic() +
"default='~/.boto'/>"
+ VSICurlFilesystemHandler::GetOptionsStatic() +
"</Options>");
return osOptions.c_str();
}
Expand Down
4 changes: 4 additions & 0 deletions port/cpl_vsil_swift.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,11 @@ const char* VSISwiftFSHandler::GetOptions()
"description='Project domain name'/>"
" <Option name='OS_REGION_NAME' type='string' "
"description='Region name'/>"
<<<<<<< HEAD:port/cpl_vsil_swift.cpp
+ VSICurlFilesystemHandlerBase::GetOptionsStatic() +
=======
+ VSICurlFilesystemHandler::GetOptionsStatic() +
>>>>>>> a8a68b1126 (Merge branch 'master' of github.com:OSGeo/gdal):gdal/port/cpl_vsil_swift.cpp
"</Options>");
return osOptions.c_str();
}
Expand Down

0 comments on commit bfdc83c

Please sign in to comment.