[BACK]Return to sftp-server.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / crypto / external / bsd / openssh / dist

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/crypto/external/bsd/openssh/dist/sftp-server.c between version 1.14 and 1.15

version 1.14, 2016/03/11 01:55:00 version 1.15, 2016/12/25 00:07:47
Line 1 
Line 1 
 /*      $NetBSD$        */  /*      $NetBSD$        */
 /* $OpenBSD: sftp-server.c,v 1.109 2016/02/15 09:47:49 dtucker Exp $ */  /* $OpenBSD: sftp-server.c,v 1.110 2016/09/12 01:22:38 deraadt Exp $ */
   
 /*  /*
  * Copyright (c) 2000-2004 Markus Friedl.  All rights reserved.   * Copyright (c) 2000-2004 Markus Friedl.  All rights reserved.
Line 19 
Line 19 
   
 #include "includes.h"  #include "includes.h"
 __RCSID("$NetBSD$");  __RCSID("$NetBSD$");
   
 #include <sys/param.h>  /* MIN */  #include <sys/param.h>  /* MIN */
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/stat.h>  #include <sys/stat.h>
Line 501  status_to_message(u_int32_t status)
Line 502  status_to_message(u_int32_t status)
                 "Operation unsupported",        /* SSH_FX_OP_UNSUPPORTED */                  "Operation unsupported",        /* SSH_FX_OP_UNSUPPORTED */
                 "Unknown error"                 /* Others */                  "Unknown error"                 /* Others */
         };          };
         return (status_messages[MIN(status,SSH2_FX_MAX)]);          return (status_messages[MINIMUM(status,SSH2_FX_MAX)]);
 }  }
   
 static void  static void

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15

CVSweb <webmaster@jp.NetBSD.org>