Add missing \n when generating pkg.conf

Reported by:	beat
Approved by:	des (mentor)
MFC after:	1 day
This commit is contained in:
Baptiste Daroussin 2012-05-21 15:45:18 +00:00
parent 9d569918e6
commit 514ead92ea
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=235726

View File

@ -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);
}