Commit 6e271d2aa1c14c2fd6b0d13eb69d15b1168fa3df

Authored by Perry Werneck
1 parent 89300dc0
Exists in master and in 1 other branch develop

Fixing return of the "find" method.

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
client/src/host/string.cc
... ... @@ -64,7 +64,7 @@ std::string TN3270::Host::toString(unsigned int row, unsigned int col, int len,
64 64 size_t TN3270::Host::find(const char * str, size_t pos) const {
65 65  
66 66 this->session->waitForReady(this->timeout);
67   - this->session->find(str,pos);
  67 + return this->session->find(str,pos);
68 68  
69 69 }
70 70  
... ...