Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 May 2012 15:45:18 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r235726 - head/usr.sbin/pkg
Message-ID:  <201205211545.q4LFjISZ063692@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Mon May 21 15:45:18 2012
New Revision: 235726
URL: http://svn.freebsd.org/changeset/base/235726

Log:
  Add missing \n when generating pkg.conf
  
  Reported by:	beat
  Approved by:	des (mentor)
  MFC after:	1 day

Modified:
  head/usr.sbin/pkg/pkg.c

Modified: head/usr.sbin/pkg/pkg.c
==============================================================================
--- head/usr.sbin/pkg/pkg.c	Mon May 21 15:01:35 2012	(r235725)
+++ head/usr.sbin/pkg/pkg.c	Mon May 21 15:45:18 2012	(r235726)
@@ -371,7 +371,7 @@ bootstrap_pkg(void)
 		config = fopen(conf, "w+");
 		if (config == NULL)
 			goto cleanup;
-		fprintf(config, "packagesite: %s", url);
+		fprintf(config, "packagesite: %s\n", url);
 		fclose(config);
 	}
 



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