diff options
Diffstat (limited to 'libopkg')
-rw-r--r-- | libopkg/pkg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopkg/pkg.c b/libopkg/pkg.c index 2e854a9..1606eaa 100644 --- a/libopkg/pkg.c +++ b/libopkg/pkg.c @@ -714,7 +714,7 @@ pkg_formatted_field(FILE *fp, pkg_t *pkg, const char *field) case 'M': if (strcasecmp(field, "Maintainer") == 0) { if (pkg->maintainer) { - fprintf(fp, "maintainer: %s\n", pkg->maintainer); + fprintf(fp, "Maintainer: %s\n", pkg->maintainer); } } else if (strcasecmp(field, "MD5sum") == 0) { if (pkg->md5sum) { |