]> www.average.org Git - pam_pcsc_cr.git/blobdiff - authfile.c
eprint don't need \n in the format
[pam_pcsc_cr.git] / authfile.c
index 1e0826d4d8396505f7da71a1f8e3c0a8dad99dd1..8b077df0a0c74e2bb800b6f6883fba18acdaa7da 100644 (file)
@@ -42,7 +42,7 @@ int update_authfile(const char *fn, const char *tokenid, const char *id,
                        oldnonce = strtok(NULL, ":\r\n");
                        hauthobj = strtok(NULL, ":\r\n");
                } else {
-                       eprint("error reading from %s: %s\n",
+                       eprint("error reading from %s: %s",
                                fn, strerror(errno));
                }
                fclose(fp);
@@ -52,10 +52,10 @@ int update_authfile(const char *fn, const char *tokenid, const char *id,
 
                hlen = strlen(hauthobj);
                if (hlen % 32 != 0) {
-                       eprint("error: auth string has wrong length\n");
+                       eprint("error: auth string has wrong length");
                } else if (hlen !=
                                strspn(hauthobj, "0123456789abcdefABCDEF")) {
-                       eprint("error: auth string not hexadecimal\n");
+                       eprint("error: auth string not hexadecimal");
                } else {
                        oldauthsize = hlen/2;
                        oldauthobj = alloca(oldauthsize);
@@ -71,18 +71,18 @@ int update_authfile(const char *fn, const char *tokenid, const char *id,
 
                rc = make_challenge(id, password, nonce, chal, &csize);
                if (rc) {
-                       eprint("cannot make challenge\n");
+                       eprint("cannot make challenge");
                        return -1;
                }
                rc = pcsc_cr(chal, csize, key, &keysize);
                if (rc) {
-                       eprint("error querying token: %s\n", pcsc_errstr(rc));
+                       eprint("error querying token: %s", pcsc_errstr(rc));
                        return -1;
                }
                rc = parse_authobj(key, keysize, oldauthobj, oldauthsize,
                        mysecret, &mysecsize, myload, &myloadsize);
                if (rc) {
-                       eprint("cannot parse old authobj: %d\n", rc);
+                       eprint("cannot parse old authobj: %d", rc);
                        return -1;
                }
        }
@@ -90,29 +90,29 @@ int update_authfile(const char *fn, const char *tokenid, const char *id,
        rc = make_authobj(id, password, nonce, mysecret, mysecsize,
                        payload, paysize, authobj, &authsize);
        if (rc) {
-               eprint("make_authobj error %d\n", rc);
+               eprint("make_authobj error %d", rc);
                return -1;
        }
        fp = fopen(fn, "w");
        if (!fp) {
-               eprint("cannot open \"%s\": %s\n",
+               eprint("cannot open \"%s\": %s",
                        fn, strerror(errno));
                return -1;
        }
        if (fprintf(fp, "%s:%s:%s:", tokenid, id, nonce) < 0) {
-               eprint("cannot write to \"%s\": %s\n",
+               eprint("cannot write to \"%s\": %s",
                        fn, strerror(errno));
                return -1;
        }
        for (i = 0; i < authsize; i++)
            if (fprintf(fp, "%02x", authobj[i]) < 0) {
-               eprint("cannot write to \"%s\": %s\n",
+               eprint("cannot write to \"%s\": %s",
                        fn, strerror(errno));
                return -1;
        }
        fprintf(fp, "\n");
        if (fclose(fp) < 0) {
-               eprint("cannot close \"%s\": %s\n",
+               eprint("cannot close \"%s\": %s",
                        fn, strerror(errno));
                return -1;
        }