- stevesk@cvs.openbsd.org 2001/02/04 08:32:27
     [many files; did this manually to our top-level source dir]
     unexpand and remove end-of-line whitespace; ok markus@
diff --git a/md5crypt.c b/md5crypt.c
index a9f0f26..2600783 100644
--- a/md5crypt.c
+++ b/md5crypt.c
@@ -27,11 +27,11 @@
 	"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
 
 static char	*magic = "$1$";	/*
-                                 * This string is magic for
-                                 * this algorithm.  Having
-                                 * it this way, we can get
-                                 * get better later on
-                                 */
+				 * This string is magic for
+				 * this algorithm.  Having
+				 * it this way, we can get
+				 * get better later on
+				 */
 
 static void
 to64(char *s, unsigned long v, int n)
@@ -45,7 +45,7 @@
 int
 is_md5_salt(const char *salt)
 {
-        return (!strncmp(salt, magic, strlen(magic)));
+	return (!strncmp(salt, magic, strlen(magic)));
 }
 
 /*