commit - 8babeffbbc0cc0097c8d7b06582e370fa43ea05e
commit + e9952e5924b7a0cb62697d5a008476ab4bd6dd3f
blob - cd7c8a2a496ff147638a89ec4f35597e82c355a1
blob + bc8333b2af521341546986741038fce75ff0b706
--- gpass.c
+++ gpass.c
+#include <err.h>
#include <limits.h>
#include <math.h>
#include <stdarg.h>
#include <stdio.h>
-#include <string.h>
+#include <strings.h>
#include <unistd.h>
#include <sodium.h>
}
void
-err(char *fmt, ...)
-{
- fprintf(stderr, "%s: ", pgen);
- if (fmt) {
- va_list argp;
- va_start(argp, fmt);
- vfprintf(stderr, fmt, argp);
- va_end(argp);
- }
- fprintf(stderr, "\n");
-}
-
-void
gen(void)
{
rewind(dictfp);
main(int argc, char *argv[])
{
pgen = argv[0];
- if (sodium_init() < 0) {
- err("could not initialise libsodium");
- exit(EXIT_FAILURE);
- }
+ if (sodium_init() < 0)
+ err(1, "libsodium");
int c;
while ((c = getopt(argc, argv, "d:e:n:")) != -1) {
switch (c) {
break;
case 'e':
plen = strtonum(optarg, 1, INT_MAX, NULL);
- if (!plen) {
- err("invalid entropy: use 1-%d", INT_MAX);
- exit(EXIT_FAILURE);
- }
+ if (!plen)
+ err(1, "bad entropy");
break;
case 'n':
npass = strtonum(optarg, 1, INT_MAX, NULL);
- if (!npass) {
- err("invalid number of passphrases: use 1-%d",
- INT_MAX);
- exit(EXIT_FAILURE);
- }
+ if (!npass)
+ err(1, "bad number of passphrases");
break;
default:
usage();
if (!dictname && !(dictname = getenv("GPASS_DIC")))
dictname = PREFIX "/share/gpass/eff.long";
- if (!(dictfp = fopen(dictname, "r"))) {
- err("could not open the dictionary file %s", dictfp);
- exit(EXIT_FAILURE);
- }
+ if (!(dictfp = fopen(dictname, "r")))
+ err(1, "could not open the dictionary file %s", dictname);
for (char c = getc(dictfp); c != EOF; c = getc(dictfp))
nlines += (c == '\n');
int log2nlines = log2(nlines);