summaryrefslogtreecommitdiffstats
path: root/loader2
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-11-03 03:15:17 +0000
committerJeremy Katz <katzj@redhat.com>2003-11-03 03:15:17 +0000
commit5422d485c83b1fbfd2f9dbc628d55e5a4c48bfa2 (patch)
tree566d718bccc249690c0f722af6a815460f437ff6 /loader2
parentb8fd54a06491bb811954172ff8078a4ab67dfce9 (diff)
downloadanaconda-5422d485c83b1fbfd2f9dbc628d55e5a4c48bfa2.tar.gz
anaconda-5422d485c83b1fbfd2f9dbc628d55e5a4c48bfa2.tar.xz
anaconda-5422d485c83b1fbfd2f9dbc628d55e5a4c48bfa2.zip
use \r\n instead of \t\n (#108562)
Diffstat (limited to 'loader2')
-rw-r--r--loader2/ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader2/ftp.c b/loader2/ftp.c
index d8fe89158..0f0fa6d51 100644
--- a/loader2/ftp.c
+++ b/loader2/ftp.c
@@ -459,7 +459,7 @@ int httpGetFileDesc(char * hostname, int port, char * remotename, char *extraHea
hstr = "";
buf = alloca(strlen(remotename) + strlen(hostname) + strlen(hstr) + 25);
- sprintf(buf, "GET %s HTTP/1.0\t\nHost: %s\r\n%s\r\n", remotename, hostname, hstr);
+ sprintf(buf, "GET %s HTTP/1.0\r\nHost: %s\r\n%s\r\n", remotename, hostname, hstr);
write(sock, buf, strlen(buf));
/* This is fun; read the response a character at a time until we: