]> andersk Git - openssh.git/blobdiff - hostfile.c
*** empty log message ***
[openssh.git] / hostfile.c
index dcee03448332bea19f36e2e3cf776a53bc2f87ef..31147cba1bdef165002b8abb25b7c8de8c287269 100644 (file)
@@ -77,10 +77,10 @@ hostfile_check_key(int bits, Key *key, const char *host, const char *filename, i
        if (key == NULL || key->type != KEY_RSA1 || key->rsa == NULL)
                return 1;
        if (bits != BN_num_bits(key->rsa->n)) {
-               log("Warning: %s, line %d: keysize mismatch for host %s: "
+               logit("Warning: %s, line %d: keysize mismatch for host %s: "
                    "actual %d vs. announced %d.",
                    filename, linenum, host, BN_num_bits(key->rsa->n), bits);
-               log("Warning: replace %d with %d in %s, line %d.",
+               logit("Warning: replace %d with %d in %s, line %d.",
                    bits, BN_num_bits(key->rsa->n), filename, linenum);
        }
        return 1;
This page took 0.031654 seconds and 4 git commands to generate.