diff options
author | Tim Potter <tpot@samba.org> | 2000-12-12 06:05:13 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2000-12-12 06:05:13 +0000 |
commit | 65fd1be1524ad0ec7d5b27dc9dd0ce4f94e737b8 (patch) | |
tree | 1134a511b616bac9e0f892acfb3b1a19ac00842d /testsuite/lib | |
parent | b9c9e5d145a072e805ad73bd218ab2ad821bd826 (diff) | |
download | samba-65fd1be1524ad0ec7d5b27dc9dd0ce4f94e737b8.tar.gz samba-65fd1be1524ad0ec7d5b27dc9dd0ce4f94e737b8.tar.bz2 samba-65fd1be1524ad0ec7d5b27dc9dd0ce4f94e737b8.zip |
Fix error string.
(This used to be commit 73b237e639717019c596954c745b7e4d038ddc8c)
Diffstat (limited to 'testsuite/lib')
-rw-r--r-- | testsuite/lib/smbclient.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/lib/smbclient.exp b/testsuite/lib/smbclient.exp index 3fd920e07f..dc55d72139 100644 --- a/testsuite/lib/smbclient.exp +++ b/testsuite/lib/smbclient.exp @@ -46,7 +46,7 @@ proc do_smbclient { args } { expect { $smb_prompt {} timeout { perror "timed out $description"; return -1} - eof { perror "end of file description"; return -1 } + eof { perror "end of file $description"; return -1 } } verbose $expect_out(buffer) |