Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 Jun 2009 20:53:58 +0000 (UTC)
From:      Brian Somers <brian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r195212 - head/usr.sbin/pkg_install/lib
Message-ID:  <200906302053.n5UKrwMB091988@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brian
Date: Tue Jun 30 20:53:57 2009
New Revision: 195212
URL: http://svn.freebsd.org/changeset/base/195212

Log:
  Don't imply that only FTP urls are supported when we can't fetch
  a package.
  
  Approved by:	re (kib)
  MFC after:	3 weeks

Modified:
  head/usr.sbin/pkg_install/lib/url.c

Modified: head/usr.sbin/pkg_install/lib/url.c
==============================================================================
--- head/usr.sbin/pkg_install/lib/url.c	Tue Jun 30 20:53:56 2009	(r195211)
+++ head/usr.sbin/pkg_install/lib/url.c	Tue Jun 30 20:53:57 2009	(r195212)
@@ -106,7 +106,7 @@ fileGetURL(const char *base, const char 
 
     fetchDebug = (Verbose > 0);
     if ((ftp = fetchGetURL(fname, Verbose ? "v" : NULL)) == NULL) {
-	printf("Error: FTP Unable to get %s: %s\n",
+	printf("Error: Unable to get %s: %s\n",
 	       fname, fetchLastErrString);
 	return NULL;
     }



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