From c09e8448c2569fcf6b4537916888a55e7a18141d Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 19 Jan 2023 14:53:35 -0500 Subject: [PATCH] Change to POSIX compliant range POSIX allows ., but does not allow +. This was a problem with EL 8.4 libxcrypt, though is not a problem otherwise. --- confluent_osdeploy/utils/clortho.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_osdeploy/utils/clortho.c b/confluent_osdeploy/utils/clortho.c index 3faefc8a..d2e74312 100644 --- a/confluent_osdeploy/utils/clortho.c +++ b/confluent_osdeploy/utils/clortho.c @@ -18,7 +18,7 @@ #define MAXPACKET 1024 -static const char cryptalpha[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; +static const char cryptalpha[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789./"; unsigned char* genpasswd(int len) { unsigned char * passwd;