ifp = if_lookup_address (p->prefix);
        if (! ifp)
          {
-           zlog_warn ("Neighbor %s doesnt have connected interface!",
+           zlog_warn ("Neighbor %s doesn't have connected interface!",
                       inet_ntoa (p->prefix));
            continue;
          }
         
         if ( (connected = connected_lookup_address (ifp, p->prefix)) == NULL)
           {
-            zlog_warn ("Neighbor %s doesnt have connected network",
+            zlog_warn ("Neighbor %s doesn't have connected network",
                        inet_ntoa (p->prefix));
             continue;
           }
 }
 /* ARGSUSED */
 static void
-rip_distribute_update_all_wrapper(struct access_list *notused)
+rip_distribute_update_all_wrapper(const char *unused)
 {
         rip_distribute_update_all(NULL);
 }