Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
0de0bb1c
...
0de0bb1cd1eacebab271a09795ee22207c49c236
authored
2003-03-16 12:18:59 +0000
by
Wojciech Polak
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mh_getyn, mh_real_install): Added an extra space after the question
marks.
1 parent
dc27967e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
mh/mh_init.c
mh/mh_init.c
View file @
0de0bb1
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
Copyright (C) 1999, 2000, 2001, 2002
, 2003
Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -250,7 +250,7 @@ mh_getyn (const char *fmt, ...)
int
len
;
vfprintf
(
stdout
,
fmt
,
ap
);
fprintf
(
stdout
,
"?"
);
fprintf
(
stdout
,
"?
"
);
p
=
fgets
(
repl
,
sizeof
repl
,
stdin
);
if
(
!
p
)
return
0
;
...
...
@@ -615,9 +615,9 @@ mh_real_install (char *name, int automode)
local
=
mh_getyn
(
_
(
"Do you want a path below your login directory"
));
if
(
local
)
printf
(
_
(
"What is the path?"
));
printf
(
_
(
"What is the path?
"
));
else
printf
(
_
(
"What is the full path?"
));
printf
(
_
(
"What is the full path?
"
));
if
(
getline
(
&
p
,
&
n
,
stdin
)
<=
0
)
exit
(
1
);
...
...
Please
register
or
sign in
to post a comment