Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Nov 2015 21:19:46 +0000 (UTC)
From:      Devin Teske <dteske@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r290340 - head/usr.sbin/bsdinstall/distfetch
Message-ID:  <201511032119.tA3LJk94081925@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dteske
Date: Tue Nov  3 21:19:46 2015
New Revision: 290340
URL: https://svnweb.freebsd.org/changeset/base/290340

Log:
  Fix typo in error message
  
  Differential Revision:	https://reviews.freebsd.org/D3997
  Submitted by:	git_johnko.ca (John Ko)
  MFC after:	3 days
  X-MFC-to:	stable/10 stable/9

Modified:
  head/usr.sbin/bsdinstall/distfetch/distfetch.c

Modified: head/usr.sbin/bsdinstall/distfetch/distfetch.c
==============================================================================
--- head/usr.sbin/bsdinstall/distfetch/distfetch.c	Tue Nov  3 21:11:30 2015	(r290339)
+++ head/usr.sbin/bsdinstall/distfetch/distfetch.c	Tue Nov  3 21:19:46 2015	(r290340)
@@ -78,7 +78,7 @@ main(void)
 
 	if (chdir(getenv("BSDINSTALL_DISTDIR")) != 0) {
 		snprintf(error, sizeof(error),
-		    "Could could change to directory %s: %s\n",
+		    "Could not change to directory %s: %s\n",
 		    getenv("BSDINSTALL_DISTDIR"), strerror(errno));
 		dialog_msgbox("Error", error, 0, 0, TRUE);
 		end_dialog();



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