From 9e73aeb10fa1c713b9b77fa78465e608959d2caa Mon Sep 17 00:00:00 2001
From: Chris Allegretta <chrisa@asty.org>
Date: Wed, 7 Apr 2010 05:53:41 +0000
Subject: [PATCH] Fix that wording cause it's the file owner we care about

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4492 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
---
 src/files.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/files.c b/src/files.c
index 632c0f9a..9a853360 100644
--- a/src/files.c
+++ b/src/files.c
@@ -1591,7 +1591,7 @@ bool write_file(const char *name, FILE *f_open, bool tmp, append_type
 
 	if (stat(backupname, &backupst) != -1 &&
 	    (backupst.st_uid != st.st_uid)) {
-	    statusbar(_("Error writing backup file %s: Permission mismatch"), backupname,
+	    statusbar(_("Error writing backup file %s: File owner mismatch"), backupname,
 		strerror(errno));
 	    free(backupname);
 	    goto cleanup_and_exit;
-- 
GitLab