svn commit: r190710 - head/sbin/routed

Poul-Henning Kamp phk at FreeBSD.org
Sun Apr 5 06:48:07 PDT 2009


Author: phk
Date: Sun Apr  5 13:48:06 2009
New Revision: 190710
URL: http://svn.freebsd.org/changeset/base/190710

Log:
  Remove newlines from string argument of __COPYRIGHT(), it results in
  assembler warning messages.

Modified:
  head/sbin/routed/main.c

Modified: head/sbin/routed/main.c
==============================================================================
--- head/sbin/routed/main.c	Sun Apr  5 12:41:59 2009	(r190709)
+++ head/sbin/routed/main.c	Sun Apr  5 13:48:06 2009	(r190710)
@@ -38,9 +38,9 @@
 #include <fcntl.h>
 #include <sys/file.h>
 
-__COPYRIGHT("@(#) Copyright (c) 1983, 1988, 1993\n"
+__COPYRIGHT("@(#) Copyright (c) 1983, 1988, 1993 "
 	    "The Regents of the University of California."
-	    "  All rights reserved.\n");
+	    "  All rights reserved.");
 #ifdef __NetBSD__
 __RCSID("$NetBSD$");
 #include <util.h>


More information about the svn-src-head mailing list