example: Use const in auth_password from samplesshd.
Этот коммит содержится в:
родитель
7e921b7afb
Коммит
633d6532be
@ -59,7 +59,7 @@ static void cleanup_pcap(){
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
static int auth_password(char *user, char *password){
|
static int auth_password(const char *user, const char *password){
|
||||||
if(strcmp(user, SSHD_USER))
|
if(strcmp(user, SSHD_USER))
|
||||||
return 0;
|
return 0;
|
||||||
if(strcmp(password, SSHD_PASSWORD))
|
if(strcmp(password, SSHD_PASSWORD))
|
||||||
|
@ -62,7 +62,7 @@ static void cleanup_pcap(){
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
static int auth_password(char *user, char *password){
|
static int auth_password(const char *user, const char *password){
|
||||||
if(strcmp(user, SSHD_USER))
|
if(strcmp(user, SSHD_USER))
|
||||||
return 0;
|
return 0;
|
||||||
if(strcmp(password, SSHD_PASSWORD))
|
if(strcmp(password, SSHD_PASSWORD))
|
||||||
|
@ -58,7 +58,7 @@ void cleanup_pcap(){
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
static int auth_password(char *user, char *password){
|
static int auth_password(const char *user, const char *password){
|
||||||
if(strcmp(user,"aris"))
|
if(strcmp(user,"aris"))
|
||||||
return 0;
|
return 0;
|
||||||
if(strcmp(password,"lala"))
|
if(strcmp(password,"lala"))
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user