client: Enable history file by default unless -r

Make -H take an argument.  Default it to ~/.empire_history, except in
-r restricted mode, where history is off unless you specify -H.
That's because restricted mode restricts the player's access to the
local system, and that includes the history file.  If you want to
grant access to a history file, you have to do so explicitly.

Thanks to the previous commit, there is no need to suppress saving to
~/.empire_history in the test suite.

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2015-12-13 09:30:49 +01:00
parent de638fd779
commit 2fe38c1acb
2 changed files with 17 additions and 12 deletions

View file

@ -77,7 +77,8 @@ print_usage(char *program_name)
" -s [HOST:]PORT Specify server HOST and PORT\n"
" -u Use UTF-8\n"
#ifdef HAVE_LIBREADLINE
" -H Save readline command history to file\n"
" -H FILE Load and save command history from FILE\n"
" (default ~/.empire_history with -r, none without -r)\n"
#endif /* HAVE_LIBREADLINE */
" -h display this help and exit\n"
" -v display version information and exit\n",
@ -89,7 +90,7 @@ main(int argc, char **argv)
{
int opt;
char *auxfname = NULL;
int use_history_file = 0;
char *history_file = NULL;
int send_kill = 0;
char *host = NULL;
char *port = NULL;
@ -101,16 +102,15 @@ main(int argc, char **argv)
char *udir;
char *colon;
int sock;
char *history_file;
while ((opt = getopt(argc, argv, "2:Hkrs:uhv")) != EOF) {
while ((opt = getopt(argc, argv, "2:H:krs:uhv")) != EOF) {
switch (opt) {
case '2':
auxfname = optarg;
break;
#ifdef HAVE_LIBREADLINE
case 'H':
use_history_file = 1;
history_file = optarg;
break;
#endif /* HAVE_LIBREADLINE */
case 'k':
@ -191,8 +191,10 @@ main(int argc, char **argv)
sock = tcp_connect(host, port);
if (use_history_file)
history_file = fnameat(".empire_history", udir);
if (!restricted && !history_file)
history_file = ".empire_history";
if (history_file)
history_file = fnameat(history_file, udir);
if (!login(sock, uname, country, passwd, send_kill, utf8))
exit(1);