Radish alpha
H
HardenedBSD Package Manager
Radicle
Git (anonymous pull)
Log in to clone via SSH
s/save/free/ apparently this is better english like this :)
Baptiste Daroussin committed 14 years ago
commit 6b7d116784113decd2bb2150aff14e719d422fce
parent 2d61a0b9c959e67e865ba21dc7b3f7bdf3514c19
3 files changed +4 -4
modified pkg/autoremove.c
@@ -127,7 +127,7 @@ exec_autoremove(int argc, char **argv)
		}

		if (oldsize > newsize)
-
			printf("\nThe autoremove will save %s\n", size);
+
			printf("\nThe autoremove will free %s\n", size);
		else
			printf("\nThe autoremove will require %s more space\n", size);

modified pkg/check.c
@@ -189,7 +189,7 @@ fix_deps(struct pkgdb *db, struct deps_head *dh, int nbpkgs, bool yes)
	if (oldsize > newsize) {
		newsize *= -1;
		humanize_number(size, sizeof(size), oldsize - newsize, "B", HN_AUTOSCALE, 0);
-
		printf("\nthe installation will save %s\n", size);
+
		printf("\nthe installation will free %s\n", size);
	} else {
		humanize_number(size, sizeof(size), newsize - oldsize, "B", HN_AUTOSCALE, 0);
		printf("\nThe installation will require %s more space\n", size);
modified pkg/utils.c
@@ -353,10 +353,10 @@ print_jobs_summary(struct pkg_jobs *jobs, pkg_jobs_t type, const char *msg, ...)

		switch (type) {
		case PKG_JOBS_INSTALL:
-
			printf("\nThe installation will save %s\n", size);
+
			printf("\nThe installation will free %s\n", size);
			break;
		case PKG_JOBS_DEINSTALL:
-
			printf("\nThe deinstallation will save %s\n", size);
+
			printf("\nThe deinstallation will free %s\n", size);
			break;
		case PKG_JOBS_FETCH:
			/* nothing to report here */