projects
/
platform
/
upstream
/
libsolv.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ba3467
)
- add long forgotten break statement...
author
Michael Schroeder
<mls@suse.de>
Mon, 6 Feb 2012 12:18:28 +0000
(13:18 +0100)
committer
Michael Schroeder
<mls@suse.de>
Mon, 6 Feb 2012 12:18:28 +0000
(13:18 +0100)
ext/repo_repomdxml.c
patch
|
blob
|
history
diff --git
a/ext/repo_repomdxml.c
b/ext/repo_repomdxml.c
index
5a2bb47
..
9f466dd
100644
(file)
--- a/
ext/repo_repomdxml.c
+++ b/
ext/repo_repomdxml.c
@@
-300,6
+300,7
@@
startElement(void *userData, const char *name, const char **atts)
const char *href = find_attr("href", atts);
if (href)
repodata_set_str(pd->data, pd->rdhandle, REPOSITORY_REPOMD_LOCATION, href);
+ break;
}
case STATE_CHECKSUM:
case STATE_OPENCHECKSUM:
@@
-311,8
+312,8
@@
startElement(void *userData, const char *name, const char **atts)
fprintf(stderr, "Unknown checksum type: %d: %s\n", (unsigned int)XML_GetCurrentLineNumber(*pd->parser), type ? type : "NULL");
exit(1);
}
+ break;
}
- break;
default:
break;
}