chiark / gitweb /
Ignore Emacs backup files.
[tripe] / client.c
index 8890f6c0682b3081b63c2146464f626793e73fac..696e9c77e575a1632c47fb4e81a1b9da7e852e51 100644 (file)
--- a/client.c
+++ b/client.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: client.c,v 1.8 2001/06/19 22:09:37 mdw Exp $
+ * $Id: client.c,v 1.10 2003/05/17 10:59:19 mdw Exp $
  *
  * Client for TrIPE
  *
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: client.c,v $
+ * Revision 1.10  2003/05/17 10:59:19  mdw
+ * Put a newline in the pidfile.
+ *
+ * Revision 1.9  2002/01/13 14:57:18  mdw
+ * Track @lbuf@ changes in mLib.
+ *
  * Revision 1.8  2001/06/19 22:09:37  mdw
  * Move the program name to the right place when constructing the arguments
  * to pass to a new server.
@@ -140,7 +146,7 @@ static void writelog(const char *cat, const char *msg)
   fprintf(logfp, "%s %s: %s\n", buf, cat, msg);
 }
 
-static void cline(char *p, void *b)
+static void cline(char *p, size_t len, void *b)
 {
   char *q;
   if (!p) {
@@ -182,7 +188,7 @@ static void cline(char *p, void *b)
     die(EXIT_FAILURE, "unexpected output `%s %s'", q, p); 
 }
 
-static void sline(char *p, void *b)
+static void sline(char *p, size_t len, void *b)
 {
   if (!p) {
     if (!(f & f_uclose))
@@ -192,17 +198,15 @@ static void sline(char *p, void *b)
   puts(p);
 }
 
-static void uline(char *p, void *b)
+static void uline(char *p, size_t len, void *b)
 {
-  size_t sz;
   if (!p) {
     selbuf_destroy(b);
     shutdown(fd, 1);
     f |= f_uclose;
   } else {
-    sz = strlen(p);
-    p[sz] = '\n';
-    write(fd, p, sz + 1);
+    p[len] = '\n';
+    write(fd, p, len + 1);
   }
 }
 
@@ -467,7 +471,7 @@ int main(int argc, char *argv[])
       die(EXIT_FAILURE, "error becoming daemon: %s", strerror(errno));
   }
   if (pidfp) {
-    fprintf(pidfp, "%li", (long)getpid());
+    fprintf(pidfp, "%li\n", (long)getpid());
     fclose(pidfp);
   }