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

Diff for /src/usr.bin/ssh/dispatch.c between version 1.16 and 1.16.10.1

version 1.16, 2003/04/08 20:21:28 version 1.16.10.1, 2006/10/06 03:19:32
Line 1 
Line 1 
   /* $OpenBSD$ */
 /*  /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.   * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  *   *
Line 21 
Line 22 
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF   * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.   * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */   */
 #include "includes.h"  
 RCSID("$OpenBSD$");  
   
   #include <sys/types.h>
   
   #include <signal.h>
   #include <stdarg.h>
   
 #include "ssh1.h"  #include "ssh1.h"
 #include "ssh2.h"  #include "ssh2.h"
 #include "log.h"  #include "log.h"
Line 76 
Line 80 
         dispatch[type] = fn;          dispatch[type] = fn;
 }  }
 void  void
 dispatch_run(int mode, int *done, void *ctxt)  dispatch_run(int mode, volatile sig_atomic_t *done, void *ctxt)
 {  {
         for (;;) {          for (;;) {
                 int type;                  int type;

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.16.10.1