mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
tools: Minor fix to gpg-connect-agent options.
* tools/gpg-connect-agent.c (enum cmd_and_opt_values): Move oUnBuffered more to the top so that oNoop won't not get the value 'v'.
This commit is contained in:
parent
d7a3c455c5
commit
d89557fe95
@ -1451,6 +1451,13 @@ non-control characters.
|
|||||||
Decode data lines. That is to remove percent escapes but make sure that
|
Decode data lines. That is to remove percent escapes but make sure that
|
||||||
a new line always starts with a D and a space.
|
a new line always starts with a D and a space.
|
||||||
|
|
||||||
|
@item -u
|
||||||
|
@itemx --unbuffered
|
||||||
|
@opindex unbuffered
|
||||||
|
Set stdin and stdout into unbuffered I/O mode. This this sometimes
|
||||||
|
useful for scripting.
|
||||||
|
|
||||||
|
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
@mansect control commands
|
@mansect control commands
|
||||||
|
@ -58,6 +58,7 @@ enum cmd_and_opt_values
|
|||||||
oExec = 'E',
|
oExec = 'E',
|
||||||
oRun = 'r',
|
oRun = 'r',
|
||||||
oSubst = 's',
|
oSubst = 's',
|
||||||
|
oUnBuffered = 'u',
|
||||||
|
|
||||||
oNoVerbose = 500,
|
oNoVerbose = 500,
|
||||||
oHomedir,
|
oHomedir,
|
||||||
@ -73,7 +74,6 @@ enum cmd_and_opt_values
|
|||||||
oNoHistory,
|
oNoHistory,
|
||||||
oNoAutostart,
|
oNoAutostart,
|
||||||
oChUid,
|
oChUid,
|
||||||
oUnBuffered = 'u',
|
|
||||||
|
|
||||||
oNoop
|
oNoop
|
||||||
};
|
};
|
||||||
@ -111,7 +111,7 @@ static gpgrt_opt_t opts[] = {
|
|||||||
ARGPARSE_s_s (oDirmngrProgram, "dirmngr-program", "@"),
|
ARGPARSE_s_s (oDirmngrProgram, "dirmngr-program", "@"),
|
||||||
ARGPARSE_s_s (oKeyboxdProgram, "keyboxd-program", "@"),
|
ARGPARSE_s_s (oKeyboxdProgram, "keyboxd-program", "@"),
|
||||||
ARGPARSE_s_s (oChUid, "chuid", "@"),
|
ARGPARSE_s_s (oChUid, "chuid", "@"),
|
||||||
ARGPARSE_s_n (oUnBuffered, "unbuffered", N_("Set stdin/out unbuffered")),
|
ARGPARSE_s_n (oUnBuffered, "unbuffered", N_("set stdin/out unbuffered")),
|
||||||
|
|
||||||
ARGPARSE_end ()
|
ARGPARSE_end ()
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user