From 5f2ac8236b3b4375430fd8a9f112bf6748af7555 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 28 Feb 2018 05:03:19 +0000 Subject: [PATCH] spelling: random --- src/Cedar/Sam.c | 2 +- src/Cedar/Sam.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Cedar/Sam.c b/src/Cedar/Sam.c index 20a52e18..d723f4de 100644 --- a/src/Cedar/Sam.c +++ b/src/Cedar/Sam.c @@ -473,7 +473,7 @@ void SecurePassword(void *secure_password, void *password, void *random) } // Generate 160bit random number -void GenRamdom(void *random) +void GenRandom(void *random) { // Validate arguments if (random == NULL) diff --git a/src/Cedar/Sam.h b/src/Cedar/Sam.h index bd099dc5..8c298cf6 100644 --- a/src/Cedar/Sam.h +++ b/src/Cedar/Sam.h @@ -124,7 +124,7 @@ bool SamAuthUserByCert(HUB *h, char *username, X *x); bool SamAuthUserByPlainPassword(CONNECTION *c, HUB *hub, char *username, char *password, bool ast, UCHAR *mschap_v2_server_response_20, RADIUS_LOGIN_OPTION *opt); POLICY *SamGetUserPolicy(HUB *h, char *username); -void GenRamdom(void *random); +void GenRandom(void *random); void SecurePassword(void *secure_password, void *password, void *random); X *GetIssuerFromList(LIST *cert_list, X *cert);