diff options
Diffstat (limited to '')
-rw-r--r-- | g10/encode.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/g10/encode.c b/g10/encode.c index eea7345fa..5726bc2b7 100644 --- a/g10/encode.c +++ b/g10/encode.c @@ -106,7 +106,8 @@ encode_simple( const char *filename, int mode ) if( opt.armor ) iobuf_push_filter( out, armor_filter, &afx ); - write_comment( out, "#Created by G10 pre-release " VERSION ); + write_comment( out, "#created by G10 v" VERSION " (" + PRINTABLE_OS_NAME ")"); if( opt.compress ) iobuf_push_filter( out, compress_filter, &zfx ); @@ -192,7 +193,8 @@ encode_crypt( const char *filename, STRLIST remusr ) if( opt.armor ) iobuf_push_filter( out, armor_filter, &afx ); - write_comment( out, "#Created by G10 pre-release " VERSION ); + write_comment( out, "#created by G10 v" VERSION " (" + PRINTABLE_OS_NAME ")"); if( opt.compress ) iobuf_push_filter( out, compress_filter, &zfx ); |