diff options
Diffstat (limited to 'g10/status.c')
-rw-r--r-- | g10/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/status.c b/g10/status.c index b665968f0..99f9cfdd2 100644 --- a/g10/status.c +++ b/g10/status.c @@ -529,7 +529,7 @@ do_get_from_fd( const char *keyword, int hidden, int bool ) write_status( STATUS_GOT_IT ); if( bool ) /* Fixme: is this correct??? */ - return string[0] == 'Y' ? "" : NULL; + return (string[0] == 'Y' || string[0] == 'y') ? "" : NULL; return string; } |