mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-09 12:54:23 +01:00
Terminate csh commands with a semicolon.
Fixes bug#1386. * agent/gpg-agent.c (main): Terminate csh style output with a semicolon. * scd/scdaemon.c: Ditto.
This commit is contained in:
parent
a2d9e48fcc
commit
d01d9ff11f
@ -1197,11 +1197,11 @@ main (int argc, char **argv )
|
|||||||
if (csh_style)
|
if (csh_style)
|
||||||
{
|
{
|
||||||
*strchr (infostr, '=') = ' ';
|
*strchr (infostr, '=') = ' ';
|
||||||
es_printf ("setenv %s\n", infostr);
|
es_printf ("setenv %s;\n", infostr);
|
||||||
if (opt.ssh_support)
|
if (opt.ssh_support)
|
||||||
{
|
{
|
||||||
*strchr (infostr_ssh_sock, '=') = ' ';
|
*strchr (infostr_ssh_sock, '=') = ' ';
|
||||||
es_printf ("setenv %s\n", infostr_ssh_sock);
|
es_printf ("setenv %s;\n", infostr_ssh_sock);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -843,7 +843,7 @@ main (int argc, char **argv )
|
|||||||
if (csh_style)
|
if (csh_style)
|
||||||
{
|
{
|
||||||
*strchr (infostr, '=') = ' ';
|
*strchr (infostr, '=') = ' ';
|
||||||
es_printf ( "setenv %s\n", infostr);
|
es_printf ( "setenv %s;\n", infostr);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user