Skip to content

Commit

Permalink
Add missing s2pexec timeout value evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Oct 23, 2024
1 parent 45d9429 commit 1a6c7d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/s2pexec/s2pexec_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ bool S2pExec::ParseArguments(span<char*> args)

optind = 1;
int opt;
while ((opt = getopt_long(static_cast<int>(args.size()), args.data(), "b:B:c:d:f:F:h:i:L:t:T:Hnrvx",
while ((opt = getopt_long(static_cast<int>(args.size()), args.data(), "b:B:c:d:f:F:h:i:o:L:t:T:Hnrvx",
options.data(), nullptr)) != -1) {
switch (opt) {
case 'b':
Expand Down

0 comments on commit 1a6c7d1

Please sign in to comment.