X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 24888DC5D6C for ; Thu, 27 Jun 2013 19:29:10 +0000 (UTC) Received: from compute5.internal (compute5.nyi.mail.srv.osa [10.202.2.45]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 5B05920AEB for ; Thu, 27 Jun 2013 15:29:03 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute5.internal (MEProxy); Thu, 27 Jun 2013 15:29:03 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id :in-reply-to:references; s=smtpout; bh=LPWybpKwQZPe9e0WQta5wsDAL 9w=; b=Y3tx09tzhM2Z9/CTF0cFfZmUtGcnngEDVJB/KqtoNHI/r+bvMABScWOhz D195w4C14YImm545a6z4yr7/Bwz24P0Wy8Dt4+LJFh6OljSNbV0aj7EJiEg2KCmv xNpPi+XhVkcKR1vx5lmCc6A5B/847xj7/0fNzB3aq84k8LHXqk= X-Sasl-enc: AxilYj/xn78cKH/GbVxOtHJIONJj/HqHa+uBi86++YaB 1372361343 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id 283C06802B6 for ; Thu, 27 Jun 2013 15:29:03 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 05/15] reword upgrade messages Date: Thu, 27 Jun 2013 15:28:50 -0400 Message-Id: X-Mailer: git-send-email 1.8.3.1 In-Reply-To: References: X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- src/upgrade.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/upgrade.c b/src/upgrade.c index 9eb7890..0d7155a 100644 --- a/src/upgrade.c +++ b/src/upgrade.c @@ -64,7 +64,7 @@ int apk_do_self_upgrade(struct apk_database *db, unsigned short solver_flags) goto ret; if (apk_flags & APK_SIMULATE) { - apk_warning("This simulation is not reliable as apk-tools upgrade is available."); + apk_warning("This simulation is not reliable if apk-tools upgrade is available."); goto ret; } @@ -72,7 +72,7 @@ int apk_do_self_upgrade(struct apk_database *db, unsigned short solver_flags) apk_solver_commit_changeset(db, &changeset, db->world); apk_db_close(db); - apk_message("Continuing the upgrade transaction with new apk-tools:"); + apk_message("Continuing the upgrade transaction:"); for (r = 0; apk_argv[r] != NULL; r++) ; apk_argv[r] = "--no-self-upgrade"; -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---