Commit 300e2774 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

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
parent cfc396c3
Showing with 4 additions and 1 deletion
+4 -1
2014-07-11 Benno Schulenberg <bensberg@justemail.net>
* src/files.c (write_lockfile): Refix typo in error message.
GNU nano 2.3.5 - 2014.07.11 GNU nano 2.3.5 - 2014.07.11
2014-07-11 Chris Allegretta <chrisa@asty.org> 2014-07-11 Chris Allegretta <chrisa@asty.org>
* src/files.c (do_lockfile, open_file): If locking fails, * src/files.c (do_lockfile, open_file): If locking fails,
......
...@@ -141,7 +141,7 @@ int write_lockfile(const char *lockfilename, const char *origfilename, bool modi ...@@ -141,7 +141,7 @@ int write_lockfile(const char *lockfilename, const char *origfilename, bool modi
mypid = getpid(); mypid = getpid();
if (gethostname(myhostname, 31) < 0) { 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; return -1;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment