summaryrefslogtreecommitdiff
path: root/xmlsecurity
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-09-22 10:27:02 +0200
committersb <sb@openoffice.org>2010-09-22 10:27:02 +0200
commit29d1f19d1f36fd3490cfc1196a716e243ba1fc9f (patch)
treeb243cf356125dc924f699e7dd1f819cedb370a9d /xmlsecurity
parent43c78860c3c910a43a8be5a0bc4fca1a096f9946 (diff)
parent05e178629a416b8c087099c2840ae7c2bffa2733 (diff)
sb129: merged in DEV300_m88
Diffstat (limited to 'xmlsecurity')
-rw-r--r--xmlsecurity/tools/demo/util2.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlsecurity/tools/demo/util2.cxx b/xmlsecurity/tools/demo/util2.cxx
index 955cb94a0474..0ec576d8d3f8 100644
--- a/xmlsecurity/tools/demo/util2.cxx
+++ b/xmlsecurity/tools/demo/util2.cxx
@@ -384,7 +384,7 @@ void QueryPrintSignatureDetails( const SignatureInformations& SignatureInformati
{
char cShowDetails;
fprintf( stdout, "\nDisplay details (y/n) [y]?" );
- fflush(stdin);
+ fflush( stdout );
fscanf( stdin, "%c", &cShowDetails);
if ( cShowDetails == 'y' )
{
@@ -409,7 +409,7 @@ int QuerySelectNumber( int nMin, int nMax )
do
{
fprintf( stdout, "\nSelect <%d-%d>:", nMin, nMax ) ;
- fflush(stdin);
+ fflush( stdout );
fscanf( stdin, "%d", &sel ) ;
} while( ( sel < nMin ) || ( sel > nMax ) );
@@ -420,7 +420,7 @@ long QueryVerifySignature()
{
char answer;
fprintf( stdout, "\nFound a signature - verify this one (y/n) [y]?" );
- fflush(stdin);
+ fflush( stdout );
fscanf( stdin, "%c", &answer);
return (answer == 'n')?0:1;
}