* server.c (handle_query): Never return "unsupported" for

qXfer:features:read queries.
This commit is contained in:
Ulrich Weigand 2008-04-04 19:19:11 +00:00
parent 86925eef33
commit 4536995d8b
2 changed files with 5 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
* server.c (handle_query): Never return "unsupported" for
qXfer:features:read queries.
2008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
* server.c (get_features_xml): Fix inverted condition.

View File

@ -497,14 +497,6 @@ handle_query (char *own_buf, int packet_len, int *new_packet_len_p)
require_running (own_buf);
/* Check for support. */
document = get_features_xml ("target.xml");
if (document == NULL)
{
own_buf[0] = '\0';
return;
}
/* Grab the annex, offset, and length. */
if (decode_xfer_read (own_buf + 20, &annex, &ofs, &len) < 0)
{