1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

Some new features for use with gpgme

This commit is contained in:
Werner Koch 2000-11-15 21:22:49 +00:00
parent 99e70f7ac7
commit d0af3b25d2
7 changed files with 144 additions and 40 deletions

View file

@ -630,7 +630,7 @@ clearsign_file( const char *fname, STRLIST locusr, const char *outfile )
}
if( old_style && only_md5 )
iobuf_writestr(out, "\n" );
iobuf_writestr(out, LF );
else {
const char *s;
int any = 0;
@ -654,11 +654,11 @@ clearsign_file( const char *fname, STRLIST locusr, const char *outfile )
}
}
assert(any);
iobuf_writestr(out, "\n" );
iobuf_writestr(out, LF );
if( opt.not_dash_escaped )
iobuf_writestr( out,
"NotDashEscaped: You need GnuPG to verify this message\n" );
iobuf_writestr(out, "\n" );
"NotDashEscaped: You need GnuPG to verify this message" LF );
iobuf_writestr(out, LF );
}