Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2004-08-13 | * keydb.c (keydb_add_resource): Factored keyring creation out to .. | Werner Koch | 2 | -10/+30 | |
(maybe_create_keyring): .. new. Make sure that we do the checks in a locked state. Problem reported by Stefan Haller. | |||||
2004-08-09 | * configure.ac (ALL_LINGUAS): Removed. | Werner Koch | 2 | -1/+5 | |
* Makefile.am (LDADD): Replaced INTLLIBS by LIBINTL. * Makefile.am (gpgkeys_hkp_LDADD): Replaced INTLLIBS by LIBINTL. * ca.po: Updated. * autogen.sh: Run aclocal with -I m4. * Makefile.am: Replaced INTLLIBS by LIBINTL. * Makefile.am (http-test): Replaced INTLLIBS by LIBINTL. | |||||
2004-03-01 | * iobuf.c (block_filter): Properly handle a partial body stream that ends | David Shaw | 2 | -0/+11 | |
with a 5-byte length that happens to be zero. | |||||
2004-02-24 | * secmem.c (lock_pool) [_AIX]: Also set errno. | Werner Koch | 2 | -1/+6 | |
2004-01-13 | * argparse.c (initialize): Avoid a number of -Wformat-nonliteral warnings. | David Shaw | 2 | -16/+25 | |
These aren't actual problems, but the warnings bothered me. | |||||
2004-01-13 | * miscutil.c (print_string2): New variation on print_string that allows | David Shaw | 3 | -8/+27 | |
two delimiters. (print_string): Call print_string2 to do work. * argparse.c (default_strusage): Update copyright date. | |||||
2003-12-25 | * iobuf.c (block_filter): Properly handle a partial body stream that ends | David Shaw | 2 | -0/+6 | |
with a 5-byte length. | |||||
2003-12-06 | * http.c (send_request): Add a Host: header for virtual hosts. | David Shaw | 2 | -5/+7 | |
2003-12-03 | * miscutil.c (answer_is_yes_no_default, answer_is_yes_no_quit): Don't use | David Shaw | 2 | -5/+12 | |
alternate strings when not needed so we don't have to re-translate them. Hopefully the comment will be enough to indicate multiple match strings. | |||||
2003-11-21 | * miscutil.c (match_multistr): New. Match against each segment in a | David Shaw | 2 | -11/+43 | |
string with tokens separated by |. (answer_is_yes_no_default, answer_is_yes_no_quit): Use it here to enable alternate translations. | |||||
2003-10-23 | * secmem.c (lock_pool) [_AIX]: Don't use plock. | Werner Koch | 2 | -0/+15 | |
2003-07-30 | * ttyio.c: Typo fixes. | Werner Koch | 2 | -2/+4 | |
2003-07-30 | Changed a lot of __MINGW32__ to _WIN32. This should help a bit in | Werner Koch | 8 | -31/+38 | |
building with native Windows compilers. On request by Brian Gladman. | |||||
2003-06-07 | Make sure that only ascii is passed to isfoo functions. | Werner Koch | 4 | -12/+22 | |
2003-05-22 | * argparse.c, dotlock.c, fileutil.c, iobuf.c, miscutil.c, | David Shaw | 12 | -276/+274 | |
simple-gettext.c, errors.c, http.c, memory.c, secmem.c, ttyio.c: Edit all preprocessor instructions to remove whitespace before the '#'. This is not required by C89, but there are some compilers out there that don't like it. | |||||
2003-05-21 | * fileutil.c (is_file_compressed): Fix the check for the "-" file | Werner Koch | 3 | -7/+13 | |
name. | |||||
2003-03-23 | * argparse.c (default_strusage): Change copyright date. | David Shaw | 2 | -2/+6 | |
2003-02-19 | * ttyio.c (tty_print_utf8_string, tty_print_utf8_string2): Use 0 to | David Shaw | 2 | -3/+10 | |
indicate a string with no maximum size. This prevents early truncation of strings that contain control chars which are expanded into \xXX form. | |||||
2002-12-26 | * iobuf.c (iobuf_flush): Only print debug info if debugging is on. | David Shaw | 2 | -1/+6 | |
2002-11-09 | * ttyio.c (TERMDEVICE): Removed. | Werner Koch | 2 | -14/+48 | |
(tty_get_ttyname): New. (init_ttyfp): Use it here instead of the TERMDEVICE macro. | |||||
2002-11-06 | * secmem.c (secmem_free, secmem_term): Use wipememory2() instead of | David Shaw | 2 | -8/+13 | |
memset() to overwrite secure memory. | |||||
2002-10-28 | * w32reg.c (read_w32_registry_string): Fixed expanding of the | Werner Koch | 2 | -0/+7 | |
environment buffer; didn't worked at all. Reported by Thijmen Klok. | |||||
2002-10-28 | reverted filetype patch | Stefan Bellon | 2 | -38/+9 | |
2002-10-28 | filetype support for RISC OS | Stefan Bellon | 3 | -17/+46 | |
2002-10-21 | * secmem.c (lock_pool) [__CYGWIN__]: Don't print secmem warning. | Werner Koch | 3 | -1/+11 | |
* iobuf.c (direct_open): Handle mode 'b' if O_BINARY is available. | |||||
2002-10-12 | Comment fix for make_filename | Werner Koch | 1 | -4/+4 | |
2002-09-16 | * w32reg.c (read_w32_registry_string): Fallback to HLM. | Werner Koch | 2 | -3/+13 | |
2002-09-11 | * simple-gettext.c: Disable charset mappings. We do it now whenV1-2-2 | Werner Koch | 2 | -8/+16 | |
installing the files. | |||||
2002-09-10 | * w32reg.c (read_w32_registry_string): Handle REG_EXPAND_SZ. | Werner Koch | 4 | -12/+110 | |
Suggested by Ryan Malayter. * strgutil.c (ascii_strcasecmp): Replaced by code from gnulib. (ascii_strncasecmp): New. | |||||
2002-09-02 | * strgutil.c (set_native_charset): Allow NULL as argument to use | Werner Koch | 2 | -3/+27 | |
nl_langinfo for selection. Mapped latin-15 to latin-1. | |||||
2002-08-30 | * iobuf.c (block_filter): Removed the assert, so that one can pass | Werner Koch | 2 | -13/+15 | |
the first character of a message and use the block filter for non partial length encoded packets. | |||||
2002-08-06 | tidying up RISC OS stuff | Stefan Bellon | 3 | -99/+59 | |
2002-08-03 | RISC OS changes because of dynload removal | Stefan Bellon | 2 | -2/+7 | |
2002-08-03 | RISC OS changes due to dynload removal | Stefan Bellon | 1 | -1/+1 | |
2002-07-25 | * secmem.c: "Warning" -> "WARNING" | David Shaw | 2 | -1/+5 | |
2002-07-05 | * argparse.c (initialize): We better exit after a read error so | Werner Koch | 2 | -1/+7 | |
that we don't run into an endless loop when reading a directory. Noted by Andrew Suffield. | |||||
2002-07-01 | * argparse.c (optfile_parse): Fix variable typo - 'p2' should be 'p' :) | David Shaw | 2 | -2/+7 | |
2002-06-29 | * argparse.c (optfile_parse): Renamed an auto I to P2 to avoid | Werner Koch | 2 | -6/+11 | |
shadowing warning. | |||||
2002-06-29 | Update head to match stable 1.0 | David Shaw | 19 | -607/+5171 | |
2000-12-19 | Removed the libgcrypt stuff and started to modify the source to work with | Werner Koch | 1 | -3/+2 | |
that external library. | |||||
2000-10-11 | This was missing in HEAD. | Werner Koch | 1 | -0/+88 | |
2000-09-18 | See ChangeLog: Mon Sep 18 16:35:45 CEST 2000 Werner Koch | Werner Koch | 4 | -8/+48 | |
2000-08-18 | See ChangeLog: Fri Aug 18 14:27:14 CEST 2000 Werner Koch | Werner Koch | 2 | -10/+16 | |
2000-07-28 | See ChangeLog: Fri Jul 28 18:19:11 CEST 2000 Werner Koch | Werner Koch | 2 | -2/+21 | |
2000-07-25 | See ChangeLog: Tue Jul 25 17:44:15 CEST 2000 Werner Koch | Werner Koch | 1 | -2/+2 | |
2000-07-14 | See ChangeLog: Fri Jul 14 19:38:23 CEST 2000 Werner Koch | Werner Koch | 9 | -36/+141 | |
2000-01-27 | See ChangeLog: Thu Jan 27 18:00:44 CET 2000 Werner Koch | Werner Koch | 9 | -60/+72 | |
2000-01-24 | See ChangeLog: Mon Jan 24 13:04:28 CET 2000 Werner Koch | Werner Koch | 23 | -3259/+108 | |
1999-12-31 | See ChangeLog: Fri Dec 31 14:06:56 CET 1999 Werner Koch | Werner Koch | 1 | -1/+1 | |
1999-12-31 | See ChangeLog: Fri Dec 31 12:48:31 CET 1999 Werner Koch | Werner Koch | 5 | -4/+39 | |