aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2011-02-06 08:45:37 +0100
committerAndreas Schneider <asn@cryptomilk.org>2011-02-06 08:45:37 +0100
commit30e4096c66ff110ab8e714c7809042177897b806 (patch)
treefefe4cd5d190d28508a28f8bff74a7715e0189bd /tests
parent03b387cf47bf74f63a84b2ac4e9c91f35a6580f9 (diff)
downloadlibssh-30e4096c66ff110ab8e714c7809042177897b806.tar.gz
libssh-30e4096c66ff110ab8e714c7809042177897b806.tar.xz
libssh-30e4096c66ff110ab8e714c7809042177897b806.zip
tests: Fixed missing ;
Diffstat (limited to 'tests')
-rw-r--r--tests/client/torture_knownhosts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/client/torture_knownhosts.c b/tests/client/torture_knownhosts.c
index ed1f311..7c716b8 100644
--- a/tests/client/torture_knownhosts.c
+++ b/tests/client/torture_knownhosts.c
@@ -71,7 +71,7 @@ static void torture_knownhosts_port(void **state) {
file = fopen(KNOWNHOSTFILES, "r");
assert_true(file != NULL);
p = fgets(buffer, sizeof(buffer), file);
- assert_false(p == NULL)
+ assert_false(p == NULL);
fclose(file);
buffer[sizeof(buffer) - 1] = '\0';
assert_true(strstr(buffer,"[localhost]:1234 ") != NULL);