1
1

Remove extern environ from the requirements

Этот коммит содержится в:
Aris Adamantiadis 2010-09-29 17:06:54 +02:00
родитель be837cdbc2
Коммит 9f53906209

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

@ -669,7 +669,7 @@ void ssh_execute_command(const char *command, socket_t in, socket_t out){
dup2(out,2);
close(in);
close(out);
execve(args[0],(char * const *)args,(char * const *)environ);
execv(args[0],(char * const *)args);
exit(1);
}