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