Carl Gay schrieb: > Could someone look over the attached patch before I commit it? It The thing that's jumping to my attention is that strerror() is not thread-safe. You should use strerror_r() instead, which is reentrant. Andreas