this might fix the freezes on freebsd, solaris, etc.
authorVladimir Nadvornik <nadvornik@suse.cz>
Tue, 15 Apr 2008 18:34:24 +0000 (18:34 +0000)
committerVladimir Nadvornik <nadvornik@suse.cz>
Tue, 15 Apr 2008 18:34:24 +0000 (18:34 +0000)
src/remote.c

index 283b260..b5e1d19 100644 (file)
@@ -265,6 +265,9 @@ RemoteConnection *remote_client_open(const gchar *path)
        rc->fd = fd;
        rc->path = g_strdup(path);
 
+       /* this might fix the freezes on freebsd, solaris, etc. - completely untested */
+       remote_client_send(rc, "\n"); 
+
        return rc;
 }