Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created VSIError to report VSI errors. #98

Closed
wants to merge 17 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Changed vsil_crypt Open to to take additional bool parameter.
  • Loading branch information
lossyrob committed Mar 20, 2016
commit 73d14b3e251393b151e042f9b6a978ba327e6667
3 changes: 2 additions & 1 deletion gdal/port/cpl_vsil_crypt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1877,7 +1877,8 @@ class VSIDummyCryptFilesystemHandler : public VSIFilesystemHandler
VSIDummyCryptFilesystemHandler() {}

virtual VSIVirtualHandle *Open( CPL_UNUSED const char *pszFilename,
CPL_UNUSED const char *pszAccess)
CPL_UNUSED const char *pszAccess,
bool)
{
CPLError(CE_Failure, CPLE_NotSupported,
"%s support not available in this build", VSICRYPT_PREFIX);
Expand Down