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.
1 parent 76bdbda commit 6b95dc6Copy full SHA for 6b95dc6
quicklisp/http.lisp
@@ -322,12 +322,13 @@
322
323
(defun full-proxy-path (host port path)
324
(format nil "~:[http~;https~]://~A~:[:~D~;~*~]~A"
325
- (eql port 443)
326
- host
327
- (or (eql port 80)
328
- (eql port 443))
329
- port
330
- path))
+ (eql port 443)
+ host
+ (or (null port)
+ (eql port 80)
+ (eql port 443))
+ port
331
+ path))
332
333
(defun user-agent-string ()
334
"Return a string suitable for using as the User-Agent value in HTTP
0 commit comments