mirror of
https://github.com/curl/curl.git
synced 2026-08-25 15:33:39 +03:00
tests/servers: remove obsolete pid variable
Variable is not used since pidfile handling moved to util.[ch] Reviewed-by: Jay Satiro Closes #7482
This commit is contained in:
parent
d9d26a6b2c
commit
4a7bf79fcc
3 changed files with 3 additions and 12 deletions
|
|
@ -1053,7 +1053,6 @@ int main(int argc, char *argv[])
|
|||
int rc;
|
||||
int error;
|
||||
int arg = 1;
|
||||
long pid;
|
||||
|
||||
memset(&req, 0, sizeof(req));
|
||||
|
||||
|
|
@ -1136,8 +1135,6 @@ int main(int argc, char *argv[])
|
|||
|
||||
install_signal_handlers(false);
|
||||
|
||||
pid = (long)getpid();
|
||||
|
||||
#ifdef ENABLE_IPV6
|
||||
if(!use_ipv6)
|
||||
#endif
|
||||
|
|
@ -1377,7 +1374,7 @@ server_cleanup:
|
|||
|
||||
if(got_exit_signal) {
|
||||
logmsg("========> %s rtspd (port: %d pid: %ld) exits with signal (%d)",
|
||||
ipv_inuse, (int)port, pid, exit_signal);
|
||||
ipv_inuse, (int)port, (long)getpid(), exit_signal);
|
||||
/*
|
||||
* To properly set the return status of the process we
|
||||
* must raise the same signal SIGINT or SIGTERM that we
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue