diff options
author | Werner Koch <wk@gnupg.org> | 2005-02-03 18:40:02 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2005-02-03 18:40:02 +0100 |
commit | b326996b784b561ab56af5b41037f60ae8a79849 (patch) | |
tree | 01ced87c39b865a5cb754985217c6692f5fa3097 /common | |
parent | Forgot to commit the recent fixed to scd and logging - doing it now (diff) | |
download | gnupg2-b326996b784b561ab56af5b41037f60ae8a79849.tar.xz gnupg2-b326996b784b561ab56af5b41037f60ae8a79849.zip |
* AUTHORS: Copied from 1.4 and edited to refelct the changes in
1.9.
* agent.h (agent_exit): Add JNLIB_GCC_A_NR to indicate that this
function won't return.
* gpg-agent.c (check_for_running_agent): Initialize pid to a
default value if not needed.
* command-ssh.c: Removed stdint.h. s/byte_t/unsigned char/,
s/uint32/u32/ becuase that is what we have always used in GnuPG.
(ssh_request_specs): Moved to top of file.
(ssh_key_types): Ditto.
(make_cstring): Ditto.
(data_sign): Don't use a variable for the passphrase prompt, make
it translatable.
(ssh_request_process):
* findkey.c (modify_description): Renamed arguments for clarity,
polished documentation. Make comment a C-string. Fixed case of
DESCRIPTION being just "%".
(agent_key_from_file): Make sure comment string to a C-string.
* gpg-agent.c (create_socket_name): Cleanup the implemntation, use
DIMof, agent_exit, removed superflous args and return the
allocated string as value. Documented. Changed callers.
(create_server_socket): Cleanups similar to above. Changed callers.
(cleanup_do): Renamed to ..
(remove_socket): .. this. Changed caller.
(handle_connections): The signals are to be handled in the select
and not in the accept. Test all FDs after returning from a
select. Remove the event tests from the accept calls. The select
already assured that the accept won't block.
Diffstat (limited to 'common')
-rw-r--r-- | common/estream.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/estream.h b/common/estream.h index 382b6da84..c201b666a 100644 --- a/common/estream.h +++ b/common/estream.h @@ -198,4 +198,5 @@ estream_t es_tmpfile (void); void es_opaque_set (estream_t ES__RESTRICT stream, void *ES__RESTRICT opaque); void *es_opaque_get (estream_t stream); -#endif +#endif /*ESTREAM_H*/ + |