svn commit: r352914 - head/sys/compat/linux

Pawel Biernacki kaktus at FreeBSD.org
Mon Sep 30 19:05:14 UTC 2019


Author: kaktus
Date: Mon Sep 30 19:05:14 2019
New Revision: 352914
URL: https://svnweb.freebsd.org/changeset/base/352914

Log:
  linux_renameat2: don't add extra \n on error.
  
  linux_msg() already adds \n at the end of all messages.
  
  Reported by:	emaste, kib (mentor), mjg (mentor)
  Reviewed by:	kib (mentor), mjg (mentor)
  Differential Revision:	https://reviews.freebsd.org/D21852

Modified:
  head/sys/compat/linux/linux_file.c

Modified: head/sys/compat/linux/linux_file.c
==============================================================================
--- head/sys/compat/linux/linux_file.c	Mon Sep 30 19:03:43 2019	(r352913)
+++ head/sys/compat/linux/linux_file.c	Mon Sep 30 19:05:14 2019	(r352914)
@@ -704,7 +704,7 @@ linux_renameat2(struct thread *td, struct linux_rename
 	int error, olddfd, newdfd;
 
 	if (args->flags != 0) {
-		linux_msg(td, "renameat2 unsupported flags 0x%x\n",
+		linux_msg(td, "renameat2 unsupported flags 0x%x",
 		    args->flags);
 		return (EINVAL);
 	}


More information about the svn-src-all mailing list