[BACK]Return to client.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / cvs

Diff for /src/usr.bin/cvs/client.c between version 1.71 and 1.72

version 1.71, 2007/07/17 20:29:58 version 1.72, 2007/08/30 11:07:18
Line 377 
Line 377 
 }  }
   
 void  void
   cvs_client_send_logmsg(char *msg)
   {
           char *buf, *p, *q;
   
           (void)xasprintf(&buf, "%s\n", msg);
   
           cvs_client_send_request("Argument -m");
           if ((p = strchr(buf, '\n')) != NULL)
                   *p++ = '\0';
           cvs_client_send_request("Argument %s", buf);
           for (q = p; p != NULL; q = p) {
                   if ((p = strchr(q, '\n')) != NULL) {
                           *p++ = '\0';
                           cvs_client_send_request("Argumentx %s", q);
                   }
           }
   
           free(buf);
   }
   
   void
 cvs_client_senddir(const char *dir)  cvs_client_senddir(const char *dir)
 {  {
         struct stat st;          struct stat st;

Legend:
Removed from v.1.71  
changed lines
  Added in v.1.72