mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-21 14:47:03 +01:00
* fileutil.c (is_file_compressed): Fixed checking for "-" filename.
This commit is contained in:
parent
d0573d3db6
commit
67a6cd7168
@ -1,3 +1,7 @@
|
||||
2003-05-21 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* fileutil.c (is_file_compressed): Fixed checking for "-" filename.
|
||||
|
||||
2003-04-13 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* srv.c (main): Test against wwwkeys.pgp.net.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* fileutil.c - file utilities
|
||||
* Copyright (C) 1998 Free Software Foundation, Inc.
|
||||
* Copyright (C) 1998, 2003 Free Software Foundation, Inc.
|
||||
*
|
||||
* This file is part of GnuPG.
|
||||
*
|
||||
@ -200,7 +200,7 @@ is_file_compressed( const char *s, int *ret_rc )
|
||||
{ 4, { 0x50, 0x4b, 0x03, 0x04 } }, /* (pk)zip */
|
||||
};
|
||||
|
||||
if ( !s || *s == '-' || !ret_rc )
|
||||
if ( !s || (*s == '-' && !s[1]) || !ret_rc )
|
||||
return 0; /* We can't check stdin or no file was given */
|
||||
|
||||
a = iobuf_open( s );
|
||||
|
Loading…
x
Reference in New Issue
Block a user