Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Apr 2009 13:48:06 +0000 (UTC)
From:      Poul-Henning Kamp <phk@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r190710 - head/sbin/routed
Message-ID:  <200904051348.n35Dm6O6019595@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200904051348.n35Dm6O6019595>