1
1

example: Use const in auth_password from samplesshd.

Этот коммит содержится в:
Andreas Schneider 2011-03-10 11:23:45 +01:00
родитель 7e921b7afb
Коммит 633d6532be
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -59,7 +59,7 @@ static void cleanup_pcap(){
#endif
static int auth_password(char *user, char *password){
static int auth_password(const char *user, const char *password){
if(strcmp(user, SSHD_USER))
return 0;
if(strcmp(password, SSHD_PASSWORD))

Просмотреть файл

@ -62,7 +62,7 @@ static void cleanup_pcap(){
#endif
static int auth_password(char *user, char *password){
static int auth_password(const char *user, const char *password){
if(strcmp(user, SSHD_USER))
return 0;
if(strcmp(password, SSHD_PASSWORD))

Просмотреть файл

@ -58,7 +58,7 @@ void cleanup_pcap(){
#endif
static int auth_password(char *user, char *password){
static int auth_password(const char *user, const char *password){
if(strcmp(user,"aris"))
return 0;
if(strcmp(password,"lala"))