Commit 6427c5b5 6427c5b593b3a71be1137369a3ff313f4d793692 by Sergey Poznyakoff

(chk_sha): Remove useless return.

1 parent 9d706f37
...@@ -682,7 +682,6 @@ chk_sha (const char *db_pass, const char *pass) ...@@ -682,7 +682,6 @@ chk_sha (const char *db_pass, const char *pass)
682 682
683 return memcmp (sha1digest, d1, sizeof sha1digest) == 0 ? 683 return memcmp (sha1digest, d1, sizeof sha1digest) == 0 ?
684 0 : MU_ERR_AUTH_FAILURE; 684 0 : MU_ERR_AUTH_FAILURE;
685 return ENOSYS;
686 } 685 }
687 686
688 static int 687 static int
......