(mh_getyn, mh_real_install): Added an extra space after the question
marks.
Showing
1 changed file
with
4 additions
and
4 deletions
1 | /* GNU Mailutils -- a suite of utilities for electronic mail | 1 | /* GNU Mailutils -- a suite of utilities for electronic mail |
2 | Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc. | 2 | Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. |
3 | 3 | ||
4 | GNU Mailutils is free software; you can redistribute it and/or modify | 4 | GNU Mailutils is free software; you can redistribute it and/or modify |
5 | it under the terms of the GNU General Public License as published by | 5 | it under the terms of the GNU General Public License as published by |
... | @@ -250,7 +250,7 @@ mh_getyn (const char *fmt, ...) | ... | @@ -250,7 +250,7 @@ mh_getyn (const char *fmt, ...) |
250 | int len; | 250 | int len; |
251 | 251 | ||
252 | vfprintf (stdout, fmt, ap); | 252 | vfprintf (stdout, fmt, ap); |
253 | fprintf (stdout, "?"); | 253 | fprintf (stdout, "? "); |
254 | p = fgets (repl, sizeof repl, stdin); | 254 | p = fgets (repl, sizeof repl, stdin); |
255 | if (!p) | 255 | if (!p) |
256 | return 0; | 256 | return 0; |
... | @@ -615,9 +615,9 @@ mh_real_install (char *name, int automode) | ... | @@ -615,9 +615,9 @@ mh_real_install (char *name, int automode) |
615 | 615 | ||
616 | local = mh_getyn (_("Do you want a path below your login directory")); | 616 | local = mh_getyn (_("Do you want a path below your login directory")); |
617 | if (local) | 617 | if (local) |
618 | printf (_("What is the path?")); | 618 | printf (_("What is the path? ")); |
619 | else | 619 | else |
620 | printf (_("What is the full path?")); | 620 | printf (_("What is the full path? ")); |
621 | if (getline (&p, &n, stdin) <= 0) | 621 | if (getline (&p, &n, stdin) <= 0) |
622 | exit (1); | 622 | exit (1); |
623 | 623 | ... | ... |
-
Please register or sign in to post a comment