We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b9034eb + 8c630cd commit 67d525bCopy full SHA for 67d525b
quicklisp/http.lisp
@@ -681,7 +681,7 @@ the indexes in the header accordingly."
681
(defgeneric request-buffer (method url)
682
(:method (method url)
683
(setf url (url url))
684
- (make-request-buffer (hostname url) (port url) (or (path url) 80)
+ (make-request-buffer (hostname url) (or (port url) 80) (path url)
685
:method method)))
686
687
(defun urlstring (url)
@@ -802,7 +802,7 @@ the indexes in the header accordingly."
802
(if call
803
(apply call (urlstring url) file rest)
804
(error "Unknow scheme ~S" url))))
805
-
+
806
(defun http-fetch (url file &key (follow-redirects t) quietly
807
(if-exists :rename-and-delete)
808
(maximum-redirects *maximum-redirects*))
0 commit comments