[883] in BarnOwl Developers
[D-O-H] r870 - branches/barnowl_sqlite/owl
daemon@ATHENA.MIT.EDU (nelhage@MIT.EDU)
Thu Oct 29 18:10:44 2009
Resent-From: nelhage@mit.edu
Resent-To: barnowl-dev-mtg@charon.mit.edu
To: dirty-owl-hackers@mit.edu
From: nelhage@MIT.EDU
Reply-to: dirty-owl-hackers@MIT.EDU
Date: Mon, 14 Jan 2008 17:39:47 -0500 (EST)
Author: nelhage
Date: 2008-01-14 17:39:47 -0500 (Mon, 14 Jan 2008)
New Revision: 870
Modified:
branches/barnowl_sqlite/owl/perlwrap.pm
Log:
make the first message id 0
Modified: branches/barnowl_sqlite/owl/perlwrap.pm
===================================================================
--- branches/barnowl_sqlite/owl/perlwrap.pm 2008-01-14 10:04:33 UTC (rev 869)
+++ branches/barnowl_sqlite/owl/perlwrap.pm 2008-01-14 22:39:47 UTC (rev 870)
@@ -342,8 +342,7 @@
package BarnOwl::Message;
use POSIX qw(ctime);
-my $__next_id;
-$__next_id = 1 unless defined($__next_id);
+my $__next_id = 0;
sub new {
my $class = shift;