1
0
This commit is contained in:
Daniel Tartavel 2020-05-06 17:19:43 +02:00
parent 57e0fbaf58
commit 6017df40ff

4
main.c
View File

@ -133,8 +133,8 @@ int getprocinfo( int ppid, char cmdline[], char cmd[], char user[] )
}
fgets( str, 1024, fh1);
null2space( str );
pos = strstr( str, "USER=");
sprintf( user, "%s", pos+5);
pos = strstr( str, "USER=") +5;
sscanf( user, "%s", pos);
fclose(fh1);
return retval;
}