From: sobtwmxt Date: Thu, 19 Nov 2009 11:25:05 +0000 (+0000) Subject: [uri] Fix outdated comment in parse_uri() X-Git-Tag: v1.0.0-rc1~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71e77b8cc20b8fd22e83568837a5eda7d9d02bb0;p=thirdparty%2Fipxe.git [uri] Fix outdated comment in parse_uri() Signed-off-by: Marty Connor --- diff --git a/src/core/uri.c b/src/core/uri.c index d31aabaf4..50a96d35c 100644 --- a/src/core/uri.c +++ b/src/core/uri.c @@ -85,7 +85,7 @@ struct uri * parse_uri ( const char *uri_string ) { return NULL; raw = ( ( ( char * ) uri ) + sizeof ( *uri ) ); - /* Zero URI struct and copy in the raw string */ + /* Copy in the raw string */ memcpy ( raw, uri_string, raw_len ); /* Start by chopping off the fragment, if it exists */