Changeset 12611


Ignore:
Timestamp:
04/15/10 14:48:52 (14 years ago)
Author:
Mark Evenson
Message:

Fix problems with HEAD against googlecode.com.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/util/HttpHead.java

    r12504 r12611  
    9393            }
    9494
    95             String path = url.getPath();
    96             out.println("HEAD " + url + " HTTP/1.1");
     95            String head = "HEAD " + url + " HTTP/1.1";
     96            out.println(head);
    9797            out.println("Connection: close");
    9898            out.println("");
Note: See TracChangeset for help on using the changeset viewer.