summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rwxr-xr-xcontrib/rpws2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 588c9bd..b14375d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-05-08 Shawn Betts <sabetts@vcn.bc.ca>
+
+ * contrib/rpws (ws_init): loop from 1 not 0
+
2006-04-29 Shawn Betts <sabetts@vcn.bc.ca>
* src/bar.c (marked_message): print NULL if msg is null in debug output
diff --git a/contrib/rpws b/contrib/rpws
index 181b964..361e3d7 100755
--- a/contrib/rpws
+++ b/contrib/rpws
@@ -60,7 +60,7 @@ sub ws_init
rp_call( "only" );
my $i;
- for( my $i = 0; $i < $num; $i++ )
+ for( my $i = 1; $i < $num; $i++ )
{
ws_init_ws( $i );
}