mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 09:32:21 +00:00
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.
This commit is contained in:
parent
01f939b871
commit
c09e8448c2
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user