diff options
Diffstat (limited to 'Source/SPSSHTunnel.m')
-rw-r--r-- | Source/SPSSHTunnel.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPSSHTunnel.m b/Source/SPSSHTunnel.m index 9b53adda..48d17932 100644 --- a/Source/SPSSHTunnel.m +++ b/Source/SPSSHTunnel.m @@ -476,7 +476,7 @@ // request an answer on the main thread (UI stuff must be done on main thread) [self performSelectorOnMainThread:@selector(workerGetResponseForQuestion:) withObject:theQuestion waitUntilDone:YES]; - // wait until an answer is available + // wait for the signal in closeSSHQuestionSheet: while (!isAnswerAvailable) [answerAvailableCondition wait]; // save the answer @@ -533,7 +533,7 @@ // request password on the main thread (UI stuff must be done on main thread) [self performSelectorOnMainThread:@selector(workerGetPasswordForQuery:) withObject:theQuery waitUntilDone:YES]; - // wait until an answer is available + // wait for the signal in closeSSHPasswordSheet: while (!isAnswerAvailable) [answerAvailableCondition wait]; // save the answer |