diff src/os_unix.c @ 7778:4e09a38129a3 v7.4.1186

commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 27 20:47:18 2016 +0100 patch 7.4.1186 Problem: Error messages for security context are hard to translate. Solution: Use one string with %s. (Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Wed, 27 Jan 2016 21:00:05 +0100
parents 6069f43cea4e
children 0b6c37dd858d
line wrap: on
line diff
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -2822,10 +2822,10 @@ mch_copy_sec(from_file, to_file)
 	    ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0);
 	    if (ret < 0)
 	    {
-		MSG_PUTS(_("Could not set security context "));
-		MSG_PUTS(name);
-		MSG_PUTS(_(" for "));
-		msg_outtrans(to_file);
+		vim_snprintf((char *)IObuff, IOSIZE,
+			_("Could not set security context %s for %s"),
+			name, to_file);
+		msg_outtrans(IObuff);
 		msg_putchar('\n');
 	    }
 	}
@@ -2842,11 +2842,11 @@ mch_copy_sec(from_file, to_file)
 		case ERANGE:
 		default:
 		    /* no enough size OR unexpected error */
-		    MSG_PUTS(_("Could not get security context "));
-		    MSG_PUTS(name);
-		    MSG_PUTS(_(" for "));
-		    msg_outtrans(from_file);
-		    MSG_PUTS(_(". Removing it!\n"));
+		     vim_snprintf((char *)IObuff, IOSIZE,
+			    _("Could not get security context %s for %s. Removing it!"),
+			    name, from_file);
+		    msg_puts(IObuff);
+		    msg_putchar('\n');
 		    /* FALLTHROUGH to remove the attribute */
 
 		case ENODATA: