*** empty log message ***
authorroot <root>
Wed, 18 Aug 2004 00:34:27 +0000 (00:34 +0000)
committerroot <root>
Wed, 18 Aug 2004 00:34:27 +0000 (00:34 +0000)
doc/rxvtc.1
src/rxvtd.C
src/rxvtdaemon.C

index 51bd4ac..8e5101f 100644 (file)
@@ -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<nodename>" is used.
+"\fB$HOME/.rxvt-unicode-\fP<nodename>" 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
index a67473d..6fcec31 100644 (file)
@@ -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 ();
index 93a70b6..27cdece 100644 (file)
@@ -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);