Fixed the mis-spelling of rendezvous.

Signed-off-by: Travis Miller <raphtee@google.com>


git-svn-id: http://test.kernel.org/svn/autotest/trunk@3320 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/common_lib/utils.py b/client/common_lib/utils.py
index eca81f2..68a2247 100644
--- a/client/common_lib/utils.py
+++ b/client/common_lib/utils.py
@@ -696,7 +696,7 @@
             'b0 = job.barrier("%s", "sc_bar", %d, port=%d)'
             % (jobid, sc_bar_timeout, sc_bar_port))
         control_new.append(
-        'b0.rendevous_servers("PARALLEL_MASTER", "%s")'
+        'b0.rendezvous_servers("PARALLEL_MASTER", "%s")'
          % jobid)
 
     elif instance == 1:
@@ -704,22 +704,22 @@
         # process to complete setup
         b0 = barrier.barrier("PARALLEL_MASTER", "sc_bar", sc_bar_timeout,
                      port=sc_bar_port)
-        b0.rendevous_servers("PARALLEL_MASTER", jobid)
+        b0.rendezvous_servers("PARALLEL_MASTER", jobid)
 
         if(num_jobs > 2):
             b1 = barrier.barrier(jobid, "s_bar", s_bar_timeout,
                          port=s_bar_port)
-            b1.rendevous(rendvstr)
+            b1.rendezvous(rendvstr)
 
     else:
         # For the rest of the clients
         b2 = barrier.barrier(jobid, "s_bar", s_bar_timeout, port=s_bar_port)
-        b2.rendevous(rendvstr)
+        b2.rendezvous(rendvstr)
 
     # Client side barrier for all the tests to start at the same time
     control_new.append('b1 = job.barrier("%s", "c_bar", %d, port=%d)'
                     % (jobid, c_bar_timeout, c_bar_port))
-    control_new.append("b1.rendevous(%s)" % rendvstr)
+    control_new.append("b1.rendezvous(%s)" % rendvstr)
 
     # Stick in the rest of the control file
     control_new.append(control)