[Pkg-ocaml-maint-commits] r3221 - in /trunk/packages/mldonkey/trunk/debian: changelog utils/mldonkey_command.ml

smimram at users.alioth.debian.org smimram at users.alioth.debian.org
Sun Oct 8 12:09:12 UTC 2006


Author: smimram
Date: Sun Oct  8 12:09:11 2006
New Revision: 3221

URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/?sc=1&rev=3221
Log:
Flushing after password prompt in mldonkey_command.

Modified:
    trunk/packages/mldonkey/trunk/debian/changelog
    trunk/packages/mldonkey/trunk/debian/utils/mldonkey_command.ml

Modified: trunk/packages/mldonkey/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/mldonkey/trunk/debian/changelog?rev=3221&op=diff
==============================================================================
--- trunk/packages/mldonkey/trunk/debian/changelog (original)
+++ trunk/packages/mldonkey/trunk/debian/changelog Sun Oct  8 12:09:11 2006
@@ -1,8 +1,9 @@
 mldonkey (2.8.1-2) UNRELEASED; urgency=low
 
   * Creating mldonkey group as system group, closes: #389455.
-
- -- Samuel Mimram <smimram at debian.org>  Mon, 25 Sep 2006 20:29:29 +0000
+  * Flushing after password prompt in mldonkey_command, closes: #391729.
+
+ -- Samuel Mimram <smimram at debian.org>  Sun,  8 Oct 2006 12:06:48 +0000
 
 mldonkey (2.8.1-1) unstable; urgency=low
 

Modified: trunk/packages/mldonkey/trunk/debian/utils/mldonkey_command.ml
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/mldonkey/trunk/debian/utils/mldonkey_command.ml?rev=3221&op=diff
==============================================================================
--- trunk/packages/mldonkey/trunk/debian/utils/mldonkey_command.ml (original)
+++ trunk/packages/mldonkey/trunk/debian/utils/mldonkey_command.ml Sun Oct  8 12:09:11 2006
@@ -67,7 +67,8 @@
       Some(x) -> x
       | None ->
         begin
-        prerr_string "Password : ";
+        prerr_string "Password: ";
+        flush stderr;
         read_line ()
         end
     in
@@ -114,7 +115,7 @@
     ("-s", Arg.Unit ( fun () -> state.use_stdin <- true ), "Use stdin to enter command");
     ("-v", Arg.Unit ( fun () -> state.verbose <- true ), "Display login information") ]
     ( fun x -> commands := x :: !commands )
-    "Usage mldonkey_command [options] list_of_command \n where options are :"
+    "Usage mldonkey_command [options] list_of_command \n where options are:"
   in
   let _ = 
     if state.verbose then 




More information about the Pkg-ocaml-maint-commits mailing list