[BACK]Return to channels.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/channels.c between version 1.277 and 1.278

version 1.277, 2008/05/09 16:17:51 version 1.278, 2008/06/10 04:50:25
Line 2761 
Line 2761 
         num_adm_permitted_opens = 0;          num_adm_permitted_opens = 0;
 }  }
   
   void
   channel_print_adm_permitted_opens(void)
   {
           static int i;
   
           for (i = 0; i < num_adm_permitted_opens; i++)
                   if (permitted_adm_opens[i].host_to_connect != NULL)
                           printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
                               permitted_adm_opens[i].port_to_connect);
   }
   
 /* Try to start non-blocking connect to next host in cctx list */  /* Try to start non-blocking connect to next host in cctx list */
 static int  static int
 connect_next(struct channel_connect *cctx)  connect_next(struct channel_connect *cctx)

Legend:
Removed from v.1.277  
changed lines
  Added in v.1.278