summaryrefslogtreecommitdiff
path: root/rpmspec.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2010-10-12 15:10:26 +0300
committerPanu Matilainen <pmatilai@redhat.com>2010-10-12 15:10:26 +0300
commitb611e57e667455ede8706094ce1ff50f6b06a32f (patch)
treeb91fc735f6a1c33138b53656109f4786d047c50c /rpmspec.c
parent6f8125c9fdcf852fb60e21d2cec54dedc62307c9 (diff)
downloadrpm-b611e57e667455ede8706094ce1ff50f6b06a32f.tar.gz
rpm-b611e57e667455ede8706094ce1ff50f6b06a32f.tar.bz2
rpm-b611e57e667455ede8706094ce1ff50f6b06a32f.zip
Rpm option descriptions begin with lowercase letters, follow suit in rpmspec
Diffstat (limited to 'rpmspec.c')
-rw-r--r--rpmspec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/rpmspec.c b/rpmspec.c
index 1b972fcff..ecc443480 100644
--- a/rpmspec.c
+++ b/rpmspec.c
@@ -23,11 +23,11 @@ char *queryformat = NULL;
/* the structure describing the options we take and the defaults */
static struct poptOption optionsTable[] = {
{ "query", 'q', POPT_ARG_VAL, &mode, MODE_QUERY,
- N_("Query spec file(s)"), NULL },
+ N_("query spec file(s)"), NULL },
{ "rpms", 0, POPT_ARG_VAL, &source, RPMQV_SPECRPMS,
- N_("Operate on binary rpms generated by spec (default)"), NULL },
+ N_("operate on binary rpms generated by spec (default)"), NULL },
{ "srpm", 0, POPT_ARG_VAL, &source, RPMQV_SPECSRPM,
- N_("Operate on source rpm generated by spec"), NULL },
+ N_("operate on source rpm generated by spec"), NULL },
{ "target", 0, POPT_ARG_STRING, &target, 0,
N_("override target platform"), NULL },
{ "queryformat", 0, POPT_ARG_STRING, &queryformat, 0,