diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-11-03 03:15:17 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-11-03 03:15:17 +0000 |
commit | 5422d485c83b1fbfd2f9dbc628d55e5a4c48bfa2 (patch) | |
tree | 566d718bccc249690c0f722af6a815460f437ff6 /loader2 | |
parent | b8fd54a06491bb811954172ff8078a4ab67dfce9 (diff) | |
download | anaconda-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.c | 2 |
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: |