svn commit: r247691 - stable/8/usr.sbin/sysinstall

Devin Teske dteske at FreeBSD.org
Sun Mar 3 08:04:12 UTC 2013


Author: dteske
Date: Sun Mar  3 08:04:11 2013
New Revision: 247691
URL: http://svnweb.freebsd.org/changeset/base/247691

Log:
  MFS 9->8 r244676:
  Fix another typo while we're here.

Modified:
  stable/8/usr.sbin/sysinstall/http.c

Modified: stable/8/usr.sbin/sysinstall/http.c
==============================================================================
--- stable/8/usr.sbin/sysinstall/http.c	Sun Mar  3 08:02:07 2013	(r247690)
+++ stable/8/usr.sbin/sysinstall/http.c	Sun Mar  3 08:04:11 2013	(r247691)
@@ -253,7 +253,7 @@ mediaGetHTTP(Device *dev, char *file, Bo
 		    msgConfirm("Client error %s, you could try an other server",buf);
 		    return NULL;
 		} else if (rv >= 300) {
-		    msgConfirm("Error %s,",buf);
+		    msgConfirm("Error %s",buf);
 		    return NULL;
 		} else if (rv != 200) {
 		    msgConfirm("Error %s when sending %s, you could try an other server",buf, req);


More information about the svn-src-stable-8 mailing list