changeset 16757:a114a8bfce61

Fixed uri_parse_slashslash_authority() to skip over "//".
author Timo Sirainen <tss@iki.fi>
date Mon, 16 Sep 2013 13:17:52 +0300
parents 7fc1dcfc5e3a
children 145be4e876a8
files src/lib/uri-util.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib/uri-util.c	Mon Sep 16 01:02:03 2013 +0300
+++ b/src/lib/uri-util.c	Mon Sep 16 13:17:52 2013 +0300
@@ -569,6 +569,7 @@
 	    parser->cur[1] != '/')
 		return 0;
 
+	parser->cur += 2;
 	return uri_parse_authority(parser, auth);
 }