Indentation fix.
[u/mdw/catacomb] / passphrase.c
index b0268d3..d27b9a4 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: passphrase.c,v 1.3 2000/12/06 20:33:27 mdw Exp $
+ * $Id: passphrase.c,v 1.5 2002/01/13 13:41:37 mdw Exp $
  *
  * Reading of passphrases (Unix-specific)
  *
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: passphrase.c,v $
+ * Revision 1.5  2002/01/13 13:41:37  mdw
+ * Fix stupidity in passphrase verification.
+ *
+ * Revision 1.4  2001/04/19 18:26:01  mdw
+ * Re-request broken passphrases.
+ *
  * Revision 1.3  2000/12/06 20:33:27  mdw
  * Make flags be macros rather than enumerations, to ensure that they're
  * unsigned.
@@ -131,8 +137,7 @@ int passphrase_read(const char *tag, unsigned mode, char *buf, size_t sz)
     char b[1024];
     DRESET(&d);
     dstr_putf(&d, "Verify passphrase %s: ", tag);
-    if (pixie_getpass(d.buf, b, sizeof(b)) ||
-       strcmp(b, buf) != 0) {
+    if (pixie_getpass(d.buf, b, sizeof(b)) || strcmp(b, buf) != 0) {
       memset(b, 0, sizeof(b));
       goto fail;
     }