From: Benno Schulenberg Date: Fri, 11 Jul 2014 18:35:08 +0000 (+0000) Subject: Refixing a typo in a statusbar error message. X-Git-Tag: v2.3.6~10 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=300e27745be17903b88ffdf656eb3a28db45f8a5;p=nano.git Refixing a typo in a statusbar error message. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5063 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index d267268d..5522d837 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2014-07-11 Benno Schulenberg + * src/files.c (write_lockfile): Refix typo in error message. + GNU nano 2.3.5 - 2014.07.11 2014-07-11 Chris Allegretta * src/files.c (do_lockfile, open_file): If locking fails, diff --git a/src/files.c b/src/files.c index 6d8c3062..34a76ba3 100644 --- a/src/files.c +++ b/src/files.c @@ -141,7 +141,7 @@ int write_lockfile(const char *lockfilename, const char *origfilename, bool modi mypid = getpid(); if (gethostname(myhostname, 31) < 0) { - statusbar(_("Couldn't determine hosttname for lock file: %s"), strerror(errno)); + statusbar(_("Couldn't determine hostname for lock file: %s"), strerror(errno)); return -1; }