Commit 6d4cc2485c879967bdb0a4b48aa65ad505d150e9

Authored by Perry Werneck
1 parent 7a43c610

Fixing method name.

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/core/wait.c
@@ -67,7 +67,7 @@ LIB3270_EXPORT int lib3270_wait_for_ready(H3270 *hSession, int seconds) @@ -67,7 +67,7 @@ LIB3270_EXPORT int lib3270_wait_for_ready(H3270 *hSession, int seconds)
67 return errno = ETIMEDOUT; 67 return errno = ETIMEDOUT;
68 } 68 }
69 69
70 -int lib3270_wait_for_text(H3270 *hSession, const char *key, int seconds) 70 +int lib3270_wait_for_string(H3270 *hSession, const char *key, int seconds)
71 { 71 {
72 time_t end = time(0)+seconds; 72 time_t end = time(0)+seconds;
73 73