mirror of git://git.sv.gnu.org/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
This commit is contained in:
parent
cfc396c32e
commit
300e27745b
|
@ -1,3 +1,6 @@
|
|||
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
|
||||
2014-07-11 Chris Allegretta <chrisa@asty.org>
|
||||
* 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
|
|||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue