Radish alpha
H
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Radicle
Git
Update wording 'uptodate' -> 'up-to-date'
Bryan Drewery committed 14 years ago
commit dd1bb3a355cdce4cc305155dce6bae2aa0344eb7
parent 4833118
2 files changed +3 -3
modified pkg/audit.c
@@ -92,7 +92,7 @@ fetch_and_extract(const char *src, const char *dest)
		case EPKG_OK:
			break;
		case EPKG_UPTODATE:
-
			printf("audit file uptodate\n");
+
			printf("audit file up-to-date\n");
			retcode = EPKG_OK;
			goto cleanup;
		default:
modified pkg/update.c
@@ -196,7 +196,7 @@ exec_update(int argc, char **argv)

		retcode = update_from_remote_repo("repo", url);
		if (retcode == EPKG_UPTODATE) {
-
			printf("Remote repository uptodate no need to upgrade\n");
+
			printf("Remote repository up-to-date, no need to upgrade\n");
			retcode = EPKG_OK;
		}
	} else {
@@ -212,7 +212,7 @@ exec_update(int argc, char **argv)

			retcode = update_from_remote_repo(repo_name, url);
			if (retcode == EPKG_UPTODATE) {
-
				printf("%s repository uptodate no need to upgrade\n", repo_name);
+
				printf("%s repository up-to-date, no need to upgrade\n", repo_name);
				retcode = EPKG_OK;
			}
		}