mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Silence two -Wlogical-op warnings.
* common/tlv.c (parse_ber_header): Avoid compiler warning about a duplicate condition. * tools/gpgtar-create.c (pattern_valid_p): Likewise. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
353f6ff376
commit
6170eb8090
2 changed files with 7 additions and 3 deletions
|
@ -429,7 +429,11 @@ pattern_valid_p (const char *pattern)
|
|||
return 0;
|
||||
if (*pattern == '.' && pattern[1] == '.')
|
||||
return 0;
|
||||
if (*pattern == '/' || *pattern == DIRSEP_C)
|
||||
if (*pattern == '/'
|
||||
#ifdef HAVE_DOSISH_SYSTEM
|
||||
|| *pattern == '\\'
|
||||
#endif
|
||||
)
|
||||
return 0; /* Absolute filenames are not supported. */
|
||||
#ifdef HAVE_DRIVE_LETTERS
|
||||
if (((*pattern >= 'a' && *pattern <= 'z')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue