Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[mms-send] Fixed help message for --subject option
  • Loading branch information
monich committed Feb 27, 2014
1 parent b8604a2 commit 44c4ac1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mms-send/mms-send.c
Expand Up @@ -109,12 +109,12 @@ int main(int argc, char* argv[])
GOptionEntry entries[] = {
{ "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose,
"Enable verbose output", NULL },
{ "subject", 's', 0, G_OPTION_ARG_STRING, &subject,
"Set message subject", "TEXT" },
{ "delivery-report", 'd', 0, G_OPTION_ARG_NONE, &dr,
"Request delivery report", NULL },
{ "read-report", 'r', 0, G_OPTION_ARG_NONE, &rr,
"Request read report", NULL },
{ "subject", 's', 0, G_OPTION_ARG_STRING, &subject,
"Request read report", NULL },
{ NULL }
};
GOptionContext* options = g_option_context_new("TO FILES...");
Expand Down

0 comments on commit 44c4ac1

Please sign in to comment.