diff options
author | Werner Koch <wk@gnupg.org> | 2012-01-03 11:13:30 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2012-01-03 11:13:30 +0100 |
commit | d01d9ff11f46cbd61b7b8c0e04431e4f0c4a8580 (patch) | |
tree | 5b1e43cae865a4cfd34681945d39d31ad02e5376 /scd | |
parent | Only set gcrypt thread callback for older version of gcrypt. (diff) | |
download | gnupg2-d01d9ff11f46cbd61b7b8c0e04431e4f0c4a8580.tar.xz gnupg2-d01d9ff11f46cbd61b7b8c0e04431e4f0c4a8580.zip |
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.
Diffstat (limited to 'scd')
-rw-r--r-- | scd/scdaemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scd/scdaemon.c b/scd/scdaemon.c index 128ecc31d..6f8d01049 100644 --- a/scd/scdaemon.c +++ b/scd/scdaemon.c @@ -843,7 +843,7 @@ main (int argc, char **argv ) if (csh_style) { *strchr (infostr, '=') = ' '; - es_printf ( "setenv %s\n", infostr); + es_printf ( "setenv %s;\n", infostr); } else { |