svn commit: r195212 - head/usr.sbin/pkg_install/lib

Brian Somers brian at FreeBSD.org
Tue Jun 30 20:53:58 UTC 2009


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;
     }


More information about the svn-src-head mailing list