From 3338ffb8e621770f94f5ffd272f214b19479506d Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Thu, 23 May 1996 11:50:11 +0000 Subject: [PATCH] Remove some harmless 3am hacking artifacts. --- release/sysinstall/ftp_strat.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/release/sysinstall/ftp_strat.c b/release/sysinstall/ftp_strat.c index b186396562d0..befe58e4ac2a 100644 --- a/release/sysinstall/ftp_strat.c +++ b/release/sysinstall/ftp_strat.c @@ -4,7 +4,7 @@ * This is probably the last attempt in the `sysinstall' line, the next * generation being slated to essentially a complete rewrite. * - * $Id: ftp_strat.c,v 1.15 1996/05/05 21:54:20 jkh Exp $ + * $Id: ftp_strat.c,v 1.16 1996/05/16 11:47:28 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -134,10 +134,8 @@ mediaInitFTP(Device *dev) return FALSE; } - rel = variable_get(VAR_RELNAME); if (isDebug()) msgDebug("Attempting to open connection for URL: %s\n", cp); - hostname = variable_get(VAR_HOSTNAME); if (strncmp("ftp://", cp, 6) != NULL) { msgConfirm("Invalid URL: %s\n(A URL must start with `ftp://' here)", cp); return FALSE; @@ -204,6 +202,7 @@ mediaInitFTP(Device *dev) } /* Give it a shot - can't hurt to try and zoom in if we can, unless the release is set to __RELEASE which signifies that it's not set */ + rel = variable_get(VAR_RELNAME); if (strcmp(rel, "__RELEASE")) i = FtpChdir(ftp, rel); else