summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
...
* Add error code USER_ID_EXISTS, NAME_EXISTS, and DUP_NAME.Werner Koch2016-10-071-1/+9
| | | | Signed-off-by: Werner Koch <wk@gnupg.org>
* Add error WINDOW_TOO_SMALL, WINDOW_TOO_LARGE, and MISSING_ENVVAR.Werner Koch2016-09-011-0/+39
| | | | Signed-off-by: Werner Koch <wk@gnupg.org>
* Release 1.24libgpg-error-1.24Werner Koch2016-07-141-0/+1
|
* yat2m: Fix table formatting.Werner Koch2016-07-021-1/+3
| | | | | | | * doc/yat2m.c (proc_texi_cmd): Use .TQ for @itemx. Print a .P at the end of a level 0 table. Signed-off-by: Werner Koch <wk@gnupg.org>
* doc: Update yat2m.cWerner Koch2016-06-252-8/+57
| | | | | | | | | | | | * doc/yat2m.c: Update from gnupg. -- yat2m.c has been taken from gnupg commit 22b9bea1c3d0e944aa539a87d79e47d92ca5309f and the copy here shall now be considered as the canonical version. Signed-off-by: Werner Koch <wk@gnupg.org>
* Release 1.23libgpg-error-1.23Werner Koch2016-06-151-0/+2
|
* Add GPG_ERR_SUBKEYS_EXP_OR_REV.Werner Koch2016-05-171-2/+12
|
* Release 1.22.libgpg-error-1.22Werner Koch2016-04-251-0/+2
| | | | | | * configure.ac: Set LT version to C18/A18/R0. Signed-off-by: Werner Koch <wk@gnupg.org>
* Convert http links to https where possible in the source.Daniel Kahn Gillmor2016-02-083-3/+3
| | | | | | | | | | | | | | | | -- * use https for bug reporting * in comments and docs, use https to refer to: - www.gnu.org - creativecommons.org - translationproject.org - mail.gnome.org - www.perl.org - www.ctan.org - www.cl.cam.ac.uk - www.ntg.nl - cygwin.com - www.ethnologue.com
* Add GPG_ERR_DB_CORRUPTED.Werner Koch2016-01-191-0/+2
| | | | Signed-off-by: Werner Koch <wk@gnupg.org>
* Add error codes NO_NAME, NO_KEY, and SERVER_FAILURE.Werner Koch2015-10-211-0/+10
|
* estream: Avoid calling write(fd,NULL,n).Werner Koch2015-10-181-0/+1
| | | | | | | | | | | | | | | * src/estream.c (es_func_fd_write): Take care of a flush requests. (es_func_w32_write): Ditto. (es_func_fp_write): Ditto. -- The write handlers may be called with (BUFFER,SIZE) of (NULL,0) to propagate flush events to user supplied functions (es_fopencookie). However we need to take care to also do this with the internal handler. Might be a reason for system faults due to write or fwrite with a NULL buffer; on Linux this seems to be harmless. Signed-off-by: Werner Koch <wk@gnupg.org>
* Add GPG_ERR_FALSE and GPG_ERR_TRUE error codes.Werner Koch2015-09-281-0/+6
| | | | Signed-off-by: Werner Koch <wk@gnupg.org>
* estream: Add gpgrt_set_nonblock and gpgrt_poll.Werner Koch2015-09-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * configure.ac (AC_CHECK_HEADERS): Add sys/select.h and sys/time.h. * src/estream.c: Include both header if available. (COOKIE_IOCTL_NONBLOCK): New. (struct estream_cookie_fd): Add field nonblock. (func_fd_create): Set nonblock from MODEFLAGS. (es_func_fd_ioctl): New. (parse_mode): Add modeflag "nonblock". (es_fill): Map EWOULDBLOCK to EAGAIN. Do not set error indicator for EAGAIN. (es_flush, es_seek, es_write_nbf): Map EWOULDBLOCK to EAGAIN. (do_fdopen): Call COOKIE_IOCTL_NONBLOCK. (_gpgrt_set_nonblock): New. (_gpgrt_get_nonblock): New. (_gpgrt_poll): New. * src/gpg-error.h.in (struct _gpgrt_poll_s): New. (gpgrt_poll_t, es_poll_t): New. (es_set_nonblock, es_get_nonblock, es_poll): New. * src/gpg-error.vers, src/gpg-error.def.in: Add gpgrt_set_nonblock, gpgrt_get_nonblock, and gpgrt_poll. * src/visibility.c (gpgrt_set_nonblock, gpgrt_get_nonblock): New. (gpgrt_poll): New. * tests/t-common.h (DIM): New. * tests/t-poll.c: New. * tests/Makefile.am (TESTS): Add t-poll. (t_poll_LDADD): New. -- The poll interface uses select(2) internally because that is more portable than poll(2). Signed-off-by: Werner Koch <wk@gnupg.org>
* Release 1.20.libgpg-error-1.20Werner Koch2015-08-261-3/+9
| | | | | | * configure.ac: Set LT version to C16/A16/R0. Signed-off-by: Werner Koch <wk@gnupg.org>
* w32: Remove compiler warnings.Werner Koch2015-04-101-1/+7
| | | | | | | | | | | | | | * src/Makefile.am (pre_mkheader_cmds): Avoid make diagnostic about failed but ignored command. This confuses Emacs' compiler job parser. * tests/t-lock.c [W32]: Include time.h. * src/init.c: Reorganize Windows only code. (wchar_to_utf8, utf8_to_wchar): Remove unused functions. (_gpg_err_set_errno): Use only one copy for all platforms. -- Note that there is a still a problem for W64 pertaining to the use of an int to store a HANDLE. This will be fixed when we add a full abstraction layer for Windows file objects.
* Add GPG_ERR_LDAP_* error codes.Werner Koch2015-03-192-0/+214
| | | | | | | * src/err-codes.h.in: Add error codes. * doc/ldap2gpgerr.c: New. Signed-off-by: Werner Koch <wk@gnupg.org>
* Update copyright notices.Werner Koch2015-01-261-0/+3
| | | | --
* Add GPG_ERR_LEGACY_KEY.Werner Koch2015-01-221-5/+8
|
* Add GPG_ERR_REQUEST_TOO_SHORT and GPG_ERR_REQUEST_TOO_LONG.Werner Koch2014-12-281-1/+9
|
* Add GPG_ERR_OBJ_TERM_STATE.Werner Koch2014-12-151-6/+10
|
* Add GPG_ERR_FORBIDDEN.Werner Koch2014-12-031-0/+4
|
* doc: Add a man page for gpg-error-config.Werner Koch2014-10-155-0/+3037
| | | | | | | | | | | | * doc/gpgrt.texi: New. Just a start for now. * doc/gpl.texi, doc/lgpl.texi: New. Take from Libgcrypt. * doc/yat2m.c: New. Take from GnuPG master. * doc/Makefile.am: New. * configure.ac (AC_CONFIG_FILES): Add doc/Makefile. * Makefile.am (SUBDIRS): Add doc/. * build-aux/mdate-sh, build-aux/texinfo.tex: New. Signed-off-by: Werner Koch <wk@gnupg.org>
* Add GPG_ERR_BOGUS_STRING and an experimental gpgrt_pending.Werner Koch2014-10-021-2/+20
| | | | | | | | | * src/visibility.c (gpgrt_pending, gpgrt_pending_unlocked): New. * src/estream.c (_gpgrt_pending, _gpgrt_pending_unlocked): New. (check_pending): new. (check_pending_fbf, check_pending_nbf): New. (es_func_mem_read, es_func_fd_read, es_func_w32_read) (es_func_fp_read, es_fill): Take care of the special 0 value for SIZE.
* Update error reference.Werner Koch2014-09-291-11/+156
| | | | --
* doc updates and type fixes.Werner Koch2014-09-181-2/+16
| | | | --
* doc: Explain two error codes.Werner Koch2014-08-121-1/+10
| | | | --
* doc update.Werner Koch2014-06-301-2/+6
| | | | --
* New error code GPG_ERR_KEY_DISABLED.Werner Koch2014-06-101-0/+5
|
* Add code GPG_ERR_KEY_ON_CARD.Werner Koch2014-04-151-2/+18
|
* Add GPG_ERR_MAC_ALGO.Werner Koch2013-11-171-1/+10
|
* Add GPG_ERR_*CRYPT_CTX* and GPG_ERR_BROKEN_*KEY.Werner Koch2013-04-111-3/+56
| | | | | | | * src/err-codes.h.in (GPG_ERR_NO_CRYPT_CTX): New. (GPG_ERR_WRONG_CRYPT_CTX, GPG_ERR_BAD_CRYPT_CTX): New. (GPG_ERR_CRYPT_CTX_CONFLICT): New. (GPG_ERR_BROKEN_PUBKEY, GPG_ERR_BROKEN_SECKEY): New.
* Add more error code documentationWerner Koch2012-06-201-3/+18
| | | | --
* Generate the ChangeLog from commit logs.Werner Koch2011-12-011-0/+25
| | | | | | | | | | | | | * build-aux/gitlog-to-changelog: New script. Taken from gnulib. * build-aux/git-log-fix: New file. * build-aux/git-log-footer: New file. * doc/HACKING: New file. * ChangeLog: New file. * Makefile.am (EXTRA_DIST): Add new files. (gen-ChangeLog): New. (dist-hook): Run gen-ChangeLog. Rename all ChangeLog files to ChangeLog-2011.
* Add GPG_ERR_AMBIGUOUSWerner Koch2011-08-231-0/+5
|
* Add GPG_ERR_DUP_KEYWerner Koch2011-08-231-1/+21
|
* Updated error code referencesWerner Koch2011-03-041-19/+28
|
* Make gpg-error-config and gpg-error.m4 more robust.Werner Koch2011-02-231-1/+6
| | | | | | | | | This is done by taking host prefixed config scripts names in account (as suggested by bug#1261) and adding a new config option --host to print a warning if the used config script was not built for the current host. Care has been taken not to mess things up if an old config script without the option is used or if AC_CANONICAL_HOST has not been used.
* Add GPG_ERR_INV_CURVE and GPG_ERR_UNKNOWN_CURVEWerner Koch2011-02-011-3/+22
|
* Add GPG_ERR_NO_KEYSERVERWerner Koch2011-01-061-1/+12
|
* Add file describing some usages of the error codesWerner Koch2011-01-051-0/+378