Fixed IsTcpUdpListening function

This commit is contained in:
Kamil Boratyński 2016-03-22 23:57:09 +01:00
parent 232419df8c
commit 1f320f68c2
1 changed files with 1 additions and 2 deletions

View File

@ -122,7 +122,7 @@
################################################################################ ################################################################################
# Name : IsTcpUdpListening() # Name : IsTcpUdpListening()
# Description : Check if machine is listening on specified protocol and port # Description : Check if machine is listening on specified protocol and port
# Returns : 0 or 1 # Returns : LISTENING (0 or 1)
################################################################################ ################################################################################
IsTcpUdpListening() IsTcpUdpListening()
@ -139,7 +139,6 @@
fi fi
else else
ReportException ${TEST_NO} "Error in function call to IsTcpUdpListening" ReportException ${TEST_NO} "Error in function call to IsTcpUdpListening"
return 1
fi fi
} }