X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=abook.c;h=502aae228ed1b11f293ccd3c06e0b7225a97d63e;hb=b1c882049db5d6d7d5770134cd93e14934ace6c1;hp=37495613125918debf97c9541ab79a7c5c7c3579;hpb=5840fceb1f91b066a4c4361b0599c417aa111386;p=pkg%2Fabook.git diff --git a/abook.c b/abook.c index 3749561..502aae2 100644 --- a/abook.c +++ b/abook.c @@ -52,8 +52,6 @@ static char *rcfile = NULL; // custom formatting char custom_format[FORMAT_STRING_LEN] = "{nick} ({name}): {mobile}"; -char *parsed_custom_format = NULL; -enum field_types *custom_format_fields = 0; struct abook_output_item_filter selected_item_filter; bool alternative_datafile = FALSE; @@ -342,7 +340,7 @@ parse_command_line(int argc, char **argv) { 0, 0, 0, 0 } }; - c = getopt_long(argc, argv, "hC:", + c = getopt_long(argc, argv, "hC:f:", long_options, &option_index); if(c == -1) @@ -420,9 +418,6 @@ parse_command_line(int argc, char **argv) fprintf(stderr, _("Invalid custom format string\n")); exit(EXIT_FAILURE); } - parsed_custom_format = (char *)malloc(FORMAT_STRING_LEN * sizeof(char*)); - custom_format_fields = (enum field_types *)malloc(FORMAT_STRING_MAX_FIELDS * sizeof(enum field_types *)); - parse_custom_format(custom_format, parsed_custom_format, custom_format_fields); } if(optind < argc) { fprintf(stderr, _("%s: unrecognized arguments on command line\n"), @@ -446,10 +441,10 @@ parse_command_line(int argc, char **argv) static void show_usage() { - puts (PACKAGE " v " VERSION "\n"); + puts (PACKAGE " v" VERSION "\n"); puts (_(" -h --help show usage")); puts (_(" -C --config use an alternative configuration file")); - puts (_(" --datafile use an alternative addressbook file")); + puts (_(" -f --datafile use an alternative addressbook file")); puts (_(" --mutt-query make a query for mutt")); puts (_(" --add-email " "read an e-mail message from stdin and\n"