aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-05-24 15:22:03 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-05-24 15:22:03 +0000
commit4a8dfb34613732b81f0e4dd7fbaac5df39e395f2 (patch)
treed9c477b353969e61fc1d69b8982140fe6ab89896 /tests
parent3752b3aead68111c8cf2008e34a7f2a278a33e55 (diff)
based on Tor Arntsen's fix, this should correct test case 271 to again run
fine
Diffstat (limited to 'tests')
-rw-r--r--tests/data/test2712
-rw-r--r--tests/server/tftpd.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/data/test271 b/tests/data/test271
index d08348423..d650f9a31 100644
--- a/tests/data/test271
+++ b/tests/data/test271
@@ -26,7 +26,7 @@ tftp
TFTP retrieve
</name>
<command>
-tftp://%HOSTIP:%TFTPPORT/271 --trace-ascii log/traceit
+tftp://%HOSTIP:%TFTPPORT//271 --trace-ascii log/traceit
</command>
</client>
diff --git a/tests/server/tftpd.c b/tests/server/tftpd.c
index 519827393..26e0c4044 100644
--- a/tests/server/tftpd.c
+++ b/tests/server/tftpd.c
@@ -647,7 +647,7 @@ static int validate_access(struct testcase *test,
logmsg("trying to get file: %s mode %x", filename, mode);
- if(!strncmp("/verifiedserver", filename, 15)) {
+ if(!strncmp("verifiedserver", filename, 15)) {
char weare[128];
size_t count = sprintf(weare, "WE ROOLZ: %d\r\n", (int)getpid());