Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
HAMANO Tsukasa
OpenLDAP
Commits
a2121bb0
Commit
a2121bb0
authored
Nov 10, 2019
by
Howard Chu
Browse files
ITS#8704 add missing opt flags in prev commit
parent
0e895ffe
Changes
2
Hide whitespace changes
Inline
Side-by-side
libraries/liblmdb/mdb_dump.c
View file @
a2121bb0
...
...
@@ -181,7 +181,7 @@ int main(int argc, char *argv[])
* -V: print version and exit
* (default) dump only the main DB
*/
while
((
i
=
getopt
(
argc
,
argv
,
"af:lnps:V"
))
!=
EOF
)
{
while
((
i
=
getopt
(
argc
,
argv
,
"af:lnps:
v
V"
))
!=
EOF
)
{
switch
(
i
)
{
case
'V'
:
printf
(
"%s
\n
"
,
MDB_VERSION_STRING
);
...
...
libraries/liblmdb/mdb_stat.c
View file @
a2121bb0
...
...
@@ -65,7 +65,7 @@ int main(int argc, char *argv[])
* -V: print version and exit
* (default) print stat of only the main DB
*/
while
((
i
=
getopt
(
argc
,
argv
,
"Vaefnrs:"
))
!=
EOF
)
{
while
((
i
=
getopt
(
argc
,
argv
,
"Vaefnrs:
v
"
))
!=
EOF
)
{
switch
(
i
)
{
case
'V'
:
printf
(
"%s
\n
"
,
MDB_VERSION_STRING
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment