=== modified file 'TODO' --- TODO 2008-08-11 07:41:40 +0000 +++ TODO 2008-08-11 16:09:41 +0000 @@ -6,6 +6,7 @@ [[file:/usr/share/common-licenses/GPL-3][GPLv3]] * Mandos-client +** [#A] Change syntaxt for arguments ** [#A] Man page: man8/mandos-client.8mandos *** DESCRIPTION Describe the plus sign syntax for passing options from crypttab @@ -24,6 +25,7 @@ Text needed *** SEE ALSO Explaining test on what you can read +** [#A] Fallback on error ** Use asprintf instead of malloc and strcat? ** use strsep instead of strtok? ** use config file in addition to arguments === modified file 'plugins.d/password-prompt.c' --- plugins.d/password-prompt.c 2008-08-10 00:21:08 +0000 +++ plugins.d/password-prompt.c 2008-08-11 16:09:41 +0000 @@ -105,7 +105,7 @@ .doc = "Mandos Passprompt -- Provides a passprompt" }; ret = argp_parse (&argp, argc, argv, 0, 0, NULL); if (ret == ARGP_ERR_UNKNOWN){ - fprintf(stderr, "Unkown error while parsing arguments\n"); + fprintf(stderr, "Unknown error while parsing arguments\n"); return EXIT_FAILURE; } }