mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-31 11:41:32 +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>
|
||||
|
||||
* 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
|
||||
|
||||
|
||||
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
|
||||
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 )
|
||||
attrib_fp = stderr;
|
||||
else
|
||||
attrib_fp = fdopen( fd, "w" );
|
||||
attrib_fp = fdopen( fd, "wb" );
|
||||
if( !attrib_fp ) {
|
||||
log_fatal("can't open fd %d for attribute output: %s\n",
|
||||
fd, strerror(errno));
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* sig-check.c - Check a signature
|
||||
* Copyright (C) 1998, 1999, 2000, 2001, 2002,
|
||||
* 200 Free Software Foundation, Inc.
|
||||
* 2003 Free Software Foundation, Inc.
|
||||
*
|
||||
* This file is part of GnuPG.
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user