--- Syncify/Syncify.cpp 2005/04/05 23:05:16 437 +++ Syncify/Syncify.cpp 2005/04/05 23:14:43 438 @@ -51,11 +51,11 @@ extern "C" { void authenticate(const char* srv, const char* shr, char* wg, int wglen, char* un, int unlen, char* pw, int pwlen) { - static ext::String user("Douglas Thrift"), password(::getpass("Password:")); + static ext::Buffer user("Douglas Thrift"), password(::getpass("Password:")); - _foreach (ext::String, atom, user) + _foreach (ext::Buffer, atom, user) un[_index] = *atom; - _foreach (ext::String, atom, password) + _foreach (ext::Buffer, atom, password) pw[_index] = *atom; un[user.GetSize() < size_t(unlen) ? user.GetSize() : unlen - 1] = '\0';