summaryrefslogtreecommitdiff
path: root/ext/repo_rpmmd.c
diff options
context:
space:
mode:
authorMichael Schroeder <mls@suse.de>2009-06-22 16:02:56 +0200
committerMichael Schroeder <mls@suse.de>2009-06-22 16:02:56 +0200
commitea4012180e76fe8c52a5f808c986e84363635b8c (patch)
tree7550660c2bc68713eefdefd77134bd64b10c52b7 /ext/repo_rpmmd.c
parent944fb0aa82269120138918eb955851b7934be580 (diff)
downloadlibsolv-ea4012180e76fe8c52a5f808c986e84363635b8c.tar.gz
libsolv-ea4012180e76fe8c52a5f808c986e84363635b8c.tar.bz2
libsolv-ea4012180e76fe8c52a5f808c986e84363635b8c.zip
- add repomd.xml data sections to meta data
- bump version to 14.2
Diffstat (limited to 'ext/repo_rpmmd.c')
-rw-r--r--ext/repo_rpmmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/repo_rpmmd.c b/ext/repo_rpmmd.c
index 18dbf70..51ea595 100644
--- a/ext/repo_rpmmd.c
+++ b/ext/repo_rpmmd.c
@@ -931,11 +931,11 @@ endElement(void *userData, const char *name)
{
int l;
Id type, index;
- if (!strcasecmp (pd->tmpattr, "sha") || !strcasecmp (pd->tmpattr, "sha1"))
+ if (!strcasecmp(pd->tmpattr, "sha") || !strcasecmp(pd->tmpattr, "sha1"))
l = SIZEOF_SHA1 * 2, type = REPOKEY_TYPE_SHA1;
- else if (!strcasecmp (pd->tmpattr, "sha256"))
+ else if (!strcasecmp(pd->tmpattr, "sha256"))
l = SIZEOF_SHA256 * 2, type = REPOKEY_TYPE_SHA256;
- else if (!strcasecmp (pd->tmpattr, "md5"))
+ else if (!strcasecmp(pd->tmpattr, "md5"))
l = SIZEOF_MD5 * 2, type = REPOKEY_TYPE_MD5;
else
{