mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
* sig-check.c: Copyright typo.
* keylist.c (set_attrib_fd): Open attribute fd in binary mode. This isn't meaningful on POSIX systems, but the Mingw builds aren't exactly POSIX.
This commit is contained in:
parent
727171a6c1
commit
9e8788618f
@ -1,3 +1,11 @@
|
|||||||
|
2004-01-05 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* sig-check.c: Copyright typo.
|
||||||
|
|
||||||
|
* keylist.c (set_attrib_fd): Open attribute fd in binary mode.
|
||||||
|
This isn't meaningful on POSIX systems, but the Mingw builds
|
||||||
|
aren't exactly POSIX.
|
||||||
|
|
||||||
2003-12-28 David Shaw <dshaw@jabberwocky.com>
|
2003-12-28 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* sig-check.c (check_revocation_keys): Comments.
|
* sig-check.c (check_revocation_keys): Comments.
|
||||||
@ -8220,7 +8228,8 @@ Thu Feb 12 22:24:42 1998 Werner Koch (wk@frodo)
|
|||||||
* pubkey-enc.c (get_session_key): rewritten
|
* pubkey-enc.c (get_session_key): rewritten
|
||||||
|
|
||||||
|
|
||||||
Copyright 1998,1999,2000,2001,2002,2003 Free Software Foundation, Inc.
|
Copyright 1998, 1999, 2000, 2001, 2002, 2003,
|
||||||
|
2004 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is free software; as a special exception the author gives
|
This file is free software; as a special exception the author gives
|
||||||
unlimited permission to copy and/or distribute it, with or without
|
unlimited permission to copy and/or distribute it, with or without
|
||||||
|
@ -1136,7 +1136,7 @@ void set_attrib_fd(int fd)
|
|||||||
else if( fd == 2 )
|
else if( fd == 2 )
|
||||||
attrib_fp = stderr;
|
attrib_fp = stderr;
|
||||||
else
|
else
|
||||||
attrib_fp = fdopen( fd, "w" );
|
attrib_fp = fdopen( fd, "wb" );
|
||||||
if( !attrib_fp ) {
|
if( !attrib_fp ) {
|
||||||
log_fatal("can't open fd %d for attribute output: %s\n",
|
log_fatal("can't open fd %d for attribute output: %s\n",
|
||||||
fd, strerror(errno));
|
fd, strerror(errno));
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* sig-check.c - Check a signature
|
/* sig-check.c - Check a signature
|
||||||
* Copyright (C) 1998, 1999, 2000, 2001, 2002,
|
* Copyright (C) 1998, 1999, 2000, 2001, 2002,
|
||||||
* 200 Free Software Foundation, Inc.
|
* 2003 Free Software Foundation, Inc.
|
||||||
*
|
*
|
||||||
* This file is part of GnuPG.
|
* This file is part of GnuPG.
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user