summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsobtwmxt2009-11-19 12:25:05 +0100
committerMarty Connor2009-11-21 02:42:03 +0100
commit71e77b8cc20b8fd22e83568837a5eda7d9d02bb0 (patch)
treec236f81bef58eded6487cc32ad9669014fcfe2c7
parent[linker] Add mechanism for subsystem-dependent configuration options (diff)
downloadipxe-71e77b8cc20b8fd22e83568837a5eda7d9d02bb0.tar.gz
ipxe-71e77b8cc20b8fd22e83568837a5eda7d9d02bb0.tar.xz
ipxe-71e77b8cc20b8fd22e83568837a5eda7d9d02bb0.zip
[uri] Fix outdated comment in parse_uri()
Signed-off-by: Marty Connor <mdc@etherboot.org>
-rw-r--r--src/core/uri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/uri.c b/src/core/uri.c
index d31aabaf..50a96d35 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 */