Use of crypt at mycrypt.c:20 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
mycrypt (/home/sate/Testcases/c/cve/dovecot-1.2.0/src/auth/mycrypt.c)![]() | ||||||
![]() | ||||||
10 | #define _XPG4_2 | |||||
11 | #ifdef CRYPT_USE_XPG6 | |||||
12 | # define _XPG6 /* Some Solaris versions require this, some break with this */ | |||||
13 | #endif | |||||
14 | #include <unistd.h> | |||||
15 | ||||||
16 | #include "mycrypt.h" | |||||
17 | ||||||
18 | char *mycrypt(const char *key, const char *salt) | |||||
19 | { | |||||
20 | return crypt(key, salt);
| |||||
21 | } | |||||
![]() |