<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,6 +1,6 @@
 /* Copyright (C) 2007 Keith Rarick and Philotic Inc.
 
- * This program is free software: you can redistribute it and/or modify and Philotic Inc.
+ * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.</diff>
      <filename>net.h</filename>
    </modified>
    <modified>
      <diff>@@ -670,7 +670,9 @@ dispatch_cmd(conn c)
         break;
     case OP_PEEK:
         /* don't allow trailing garbage */
-        if (c-&gt;cmd_len != CMD_PEEK_LEN + 2) return reply_cerr(c, CERR_BAD_FORMAT);
+        if (c-&gt;cmd_len != CMD_PEEK_LEN + 2) {
+            return reply_cerr(c, CERR_BAD_FORMAT);
+        }
 
         j = job_copy(peek_buried_job() ? : delay_q_peek());
 
@@ -696,7 +698,9 @@ dispatch_cmd(conn c)
         break;
     case OP_RESERVE:
         /* don't allow trailing garbage */
-        if (c-&gt;cmd_len != CMD_RESERVE_LEN + 2) return reply_cerr(c, CERR_BAD_FORMAT);
+        if (c-&gt;cmd_len != CMD_RESERVE_LEN + 2) {
+            return reply_cerr(c, CERR_BAD_FORMAT);
+        }
 
         reserve_ct++; /* stats */
         conn_set_worker(c);
@@ -764,7 +768,9 @@ dispatch_cmd(conn c)
     case OP_KICK:
         errno = 0;
         count = strtoul(c-&gt;cmd + CMD_KICK_LEN, &amp;end_buf, 10);
-        if (end_buf == c-&gt;cmd + CMD_KICK_LEN) return reply_cerr(c, CERR_BAD_FORMAT);
+        if (end_buf == c-&gt;cmd + CMD_KICK_LEN) {
+            return reply_cerr(c, CERR_BAD_FORMAT);
+        }
         if (errno) return reply_cerr(c, CERR_BAD_FORMAT);
 
         kick_ct++; /* stats */
@@ -779,7 +785,9 @@ dispatch_cmd(conn c)
         break;
     case OP_STATS:
         /* don't allow trailing garbage */
-        if (c-&gt;cmd_len != CMD_STATS_LEN + 2) return reply_cerr(c, CERR_BAD_FORMAT);
+        if (c-&gt;cmd_len != CMD_STATS_LEN + 2) {
+            return reply_cerr(c, CERR_BAD_FORMAT);
+        }
 
         stats_ct++; /* stats */
 
@@ -879,7 +887,7 @@ h_conn_data(conn c)
     case STATE_WANTDATA:
         j = c-&gt;in_job;
 
-        r = read(c-&gt;fd, j-&gt;body + c-&gt;in_job_read, j-&gt;body_size - c-&gt;in_job_read);
+        r = read(c-&gt;fd, j-&gt;body + c-&gt;in_job_read, j-&gt;body_size -c-&gt;in_job_read);
         if (r == -1) return check_err(c, &quot;read()&quot;);
         if (r == 0) return conn_close(c); /* the client hung up */
 </diff>
      <filename>prot.c</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 /* Copyright (C) 2007 Keith Rarick and Philotic Inc.
 
- * This program is free software: you can redistribute it and/or modify and Philotic Inc.
+ * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.</diff>
      <filename>util.h</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c779823d106750eeeef9450dca9f132cf46a4326</id>
    </parent>
  </parents>
  <author>
    <name>Keith Rarick</name>
    <email>kr@essembly.com</email>
  </author>
  <url>http://github.com/kr/beanstalkd/commit/7a49cd570c9ebe807b9d33ddea8bdf238e744004</url>
  <id>7a49cd570c9ebe807b9d33ddea8bdf238e744004</id>
  <committed-date>2008-01-02T16:40:52-08:00</committed-date>
  <authored-date>2008-01-02T16:40:52-08:00</authored-date>
  <message>Make sure lines fit in 80 columns.</message>
  <tree>00a05187e3d1c381b743dc1462e6d9b23c05e603</tree>
  <committer>
    <name>Keith Rarick</name>
    <email>kr@essembly.com</email>
  </committer>
</commit>
