Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
eccea851
Commit
eccea851
authored
Sep 30, 2015
by
Howard Chu
Browse files
ITS
#8259
fix usage ordering
parent
be1795a6
Changes
6
Hide whitespace changes
Inline
Side-by-side
libraries/liblmdb/mdb_dump.1
View file @
eccea851
...
...
@@ -5,7 +5,6 @@
mdb_dump \- LMDB environment export tool
.SH SYNOPSIS
.B mdb_dump
.BR \ envpath
[\c
.BR \-V ]
[\c
...
...
@@ -19,6 +18,7 @@ mdb_dump \- LMDB environment export tool
[\c
.BR \-a \ |
.BI \-s \ subdb\fR]
.BR \ envpath
.SH DESCRIPTION
The
.B mdb_dump
...
...
libraries/liblmdb/mdb_dump.c
View file @
eccea851
...
...
@@ -155,7 +155,7 @@ static int dumpit(MDB_txn *txn, MDB_dbi dbi, char *name)
static
void
usage
(
char
*
prog
)
{
fprintf
(
stderr
,
"usage: %s
dbpath
[-V] [-f output] [-l] [-n] [-p] [-a|-s subdb]
\n
"
,
prog
);
fprintf
(
stderr
,
"usage: %s [-V] [-f output] [-l] [-n] [-p] [-a|-s subdb]
dbpath
\n
"
,
prog
);
exit
(
EXIT_FAILURE
);
}
...
...
libraries/liblmdb/mdb_load.1
View file @
eccea851
...
...
@@ -5,7 +5,6 @@
mdb_load \- LMDB environment import tool
.SH SYNOPSIS
.B mdb_load
.BR \ envpath
[\c
.BR \-V ]
[\c
...
...
@@ -18,6 +17,7 @@ mdb_load \- LMDB environment import tool
.BR \-N ]
[\c
.BR \-T ]
.BR \ envpath
.SH DESCRIPTION
The
.B mdb_load
...
...
libraries/liblmdb/mdb_load.c
View file @
eccea851
...
...
@@ -276,7 +276,7 @@ badend:
static
void
usage
(
void
)
{
fprintf
(
stderr
,
"usage: %s
dbpath
[-V] [-f input] [-n] [-s name] [-N] [-T]
\n
"
,
prog
);
fprintf
(
stderr
,
"usage: %s [-V] [-f input] [-n] [-s name] [-N] [-T]
dbpath
\n
"
,
prog
);
exit
(
EXIT_FAILURE
);
}
...
...
libraries/liblmdb/mdb_stat.1
View file @
eccea851
...
...
@@ -5,7 +5,6 @@
mdb_stat \- LMDB environment status tool
.SH SYNOPSIS
.B mdb_stat
.BR \ envpath
[\c
.BR \-V ]
[\c
...
...
@@ -19,6 +18,7 @@ mdb_stat \- LMDB environment status tool
[\c
.BR \-a \ |
.BI \-s \ subdb\fR]
.BR \ envpath
.SH DESCRIPTION
The
.B mdb_stat
...
...
libraries/liblmdb/mdb_stat.c
View file @
eccea851
...
...
@@ -37,7 +37,7 @@ static void prstat(MDB_stat *ms)
static
void
usage
(
char
*
prog
)
{
fprintf
(
stderr
,
"usage: %s
dbpath
[-V] [-n] [-e] [-r[r]] [-f[f[f]]] [-a|-s subdb]
\n
"
,
prog
);
fprintf
(
stderr
,
"usage: %s [-V] [-n] [-e] [-r[r]] [-f[f[f]]] [-a|-s subdb]
dbpath
\n
"
,
prog
);
exit
(
EXIT_FAILURE
);
}
...
...
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