summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Hoersken <info@marc-hoersken.de>2021-07-23 22:14:32 +0200
committerMarc Hoersken <info@marc-hoersken.de>2021-07-25 20:00:18 +0200
commit4a7bf79fcc2c7d0414d7d0a2bdc8fe4f1265739b (patch)
tree436965c22e4633b737b594303511cec46fccd786
parentd9d26a6b2cfae36f139232fd6742570408903908 (diff)
downloadcurl-4a7bf79fcc2c7d0414d7d0a2bdc8fe4f1265739b.tar.gz
tests/servers: remove obsolete pid variable
Variable is not used since pidfile handling moved to util.[ch] Reviewed-by: Jay Satiro Closes #7482
-rw-r--r--tests/server/rtspd.c5
-rw-r--r--tests/server/sws.c5
-rw-r--r--tests/server/tftpd.c5
3 files changed, 3 insertions, 12 deletions
diff --git a/tests/server/rtspd.c b/tests/server/rtspd.c
index 4edaeb86a..30afe48b2 100644
--- a/tests/server/rtspd.c
+++ b/tests/server/rtspd.c
@@ -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
diff --git a/tests/server/sws.c b/tests/server/sws.c
index 3fc913b3f..324c38a2a 100644
--- a/tests/server/sws.c
+++ b/tests/server/sws.c
@@ -1881,7 +1881,6 @@ int main(int argc, char *argv[])
int rc = 0;
int error;
int arg = 1;
- long pid;
const char *connecthost = "127.0.0.1";
const char *socket_type = "IPv4";
char port_str[11];
@@ -2020,8 +2019,6 @@ int main(int argc, char *argv[])
install_signal_handlers(false);
- pid = (long)getpid();
-
sock = socket(socket_domain, SOCK_STREAM, 0);
all_sockets[0] = sock;
@@ -2366,7 +2363,7 @@ sws_cleanup:
if(got_exit_signal) {
logmsg("========> %s sws (%s pid: %ld) exits with signal (%d)",
- socket_type, location_str, pid, exit_signal);
+ socket_type, location_str, (long)getpid(), exit_signal);
/*
* To properly set the return status of the process we
* must raise the same signal SIGINT or SIGTERM that we
diff --git a/tests/server/tftpd.c b/tests/server/tftpd.c
index 8caa3491f..2a0818a19 100644
--- a/tests/server/tftpd.c
+++ b/tests/server/tftpd.c
@@ -555,7 +555,6 @@ int main(int argc, char **argv)
int flag;
int rc;
int error;
- long pid;
struct testcase test;
int result = 0;
@@ -637,8 +636,6 @@ int main(int argc, char **argv)
install_signal_handlers(true);
- pid = (long)getpid();
-
#ifdef ENABLE_IPV6
if(!use_ipv6)
#endif
@@ -861,7 +858,7 @@ tftpd_cleanup:
if(got_exit_signal) {
logmsg("========> %s tftpd (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