13-master_process_handling.dpatch

Patrick Goetz pgoetz at mail.utexas.edu
Fri Jul 2 20:39:09 UTC 2010


OK, first small coding error that I've been able to find in a patch so 
far.  I'm putting it out there for comment unless I'm missing something.

in 13-master_process_handling.dpatch,

   +int read_msg(int fd, struct notify_message *msg)
   +{
   +    ssize_t r;
   +    size_t off = 0;
   +    int s = sizeof(struct notify_message);

should be
------ --

   +int read_msg(int fd, struct notify_message *msg)
   +{
   +    ssize_t r;
   +    size_t off = 0;
   +    size_t s = sizeof(struct notify_message);



Any comments before I change this in the patch?



More information about the Pkg-Cyrus-imapd-Debian-devel mailing list