--- rxvt-unicode/src/rxvtc.C 2003/11/27 10:12:10 1.4 +++ rxvt-unicode/src/rxvtc.C 2003/11/29 18:42:07 1.5 @@ -16,7 +16,7 @@ { if ((fd = socket (PF_LOCAL, SOCK_STREAM, 0)) < 0) { - perror ("unable to create listening socket"); + perror ("unable to create communications socket"); exit (EXIT_FAILURE); } @@ -28,7 +28,7 @@ if (connect (fd, (sockaddr *)&sa, sizeof (sa))) { - perror ("unable to bind listening socket"); + perror ("unable to connect to rxvtd"); exit (EXIT_FAILURE); } }