From: root Date: Wed, 18 Aug 2004 00:34:27 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=252763ade6207487a71145d2a0c5411528d7a12b;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/doc/rxvtc.1 b/doc/rxvtc.1 index 51bd4ac1..8e5101f3 100644 --- a/doc/rxvtc.1 +++ b/doc/rxvtc.1 @@ -23,7 +23,7 @@ can open windows on multiple X displays. Both \fBrxvtd\fP and \fBrxvtc\fP use the environment variable \fBRXVT_SOCKET\fP to create a listening socket and to contact the \fBrxvtd\fP, respectively. If the variable is missing, -"\fB$HOME/.rxvt-\fP" is used. +"\fB$HOME/.rxvt-unicode-\fP" is used. .PP \fBrxvtc\fP is the client program of this duo. It connects to the \fBrxvtd\fP daemon and requests a new terminal window. It diff --git a/src/rxvtd.C b/src/rxvtd.C index a67473d7..6fcec310 100644 --- a/src/rxvtd.C +++ b/src/rxvtd.C @@ -217,7 +217,7 @@ main (int argc, const char *const *argv) char *sockname = rxvt_connection::unix_sockname (); unix_listener l (sockname); - printf ("rxvtd listening on %s.\n", sockname); + printf ("rxvt-unicode daemon listening on %s.\n", sockname); free (sockname); iom.loop (); diff --git a/src/rxvtdaemon.C b/src/rxvtdaemon.C index 93a70b6b..27cdeceb 100644 --- a/src/rxvtdaemon.C +++ b/src/rxvtdaemon.C @@ -42,7 +42,7 @@ char *rxvt_connection::unix_sockname () uname (&u); path = getenv ("HOME"); - snprintf (name, PATH_MAX, "%s/.rxvt-%s", + snprintf (name, PATH_MAX, "%s/.rxvt-unicode-%s", path ? path : "/tmp", u.nodename);