diff options
author | ZhanYF <87886461+ZhanYF@users.noreply.github.com> | 2023-05-18 22:29:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-19 00:29:59 +0200 |
commit | b6513d82f8adc79be220c3e924f675d389068776 (patch) | |
tree | afaaf6c703c64544a62fae12a59c99d899d1a1bc /src/Core/Unix | |
parent | f3d79d1f620eb712692f417e094f97f47c3ad968 (diff) | |
download | VeraCrypt-b6513d82f8adc79be220c3e924f675d389068776.tar.gz VeraCrypt-b6513d82f8adc79be220c3e924f675d389068776.zip |
OpenBSD vnconfig no longer needs -c option (#1002)
Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'src/Core/Unix')
-rw-r--r-- | src/Core/Unix/OpenBSD/CoreOpenBSD.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Core/Unix/OpenBSD/CoreOpenBSD.cpp b/src/Core/Unix/OpenBSD/CoreOpenBSD.cpp index 0b55b401..3064103b 100644 --- a/src/Core/Unix/OpenBSD/CoreOpenBSD.cpp +++ b/src/Core/Unix/OpenBSD/CoreOpenBSD.cpp @@ -69,8 +69,6 @@ namespace VeraCrypt if (freeVnd == -1) throw "couldn't find free vnd"; - args.push_back ("-c"); - stringstream freePath; freePath << "vnd" << freeVnd; args.push_back (freePath.str()); |