using "left" as my host per default, swapping to "right" when needed

This commit is contained in:
Martin Willi
2007-02-15 12:13:18 +00:00
parent 2c6584c0d2
commit a02ae4ccd5
2 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -227,8 +227,8 @@ int starter_stroke_add_conn(starter_conn_t *conn)
msg.add_conn.dpd.delay = conn->dpd_delay;
msg.add_conn.dpd.action = conn->dpd_action;
starter_stroke_add_end(&msg, &msg.add_conn.me, &conn->right);
starter_stroke_add_end(&msg, &msg.add_conn.other, &conn->left);
starter_stroke_add_end(&msg, &msg.add_conn.me, &conn->left);
starter_stroke_add_end(&msg, &msg.add_conn.other, &conn->right);
return send_stroke_msg(&msg);
}