Diff for /libaitrpc/inc/defs.h between versions 1.3.6.1 and 1.3.6.3

version 1.3.6.1, 2012/03/12 14:53:07 version 1.3.6.3, 2012/03/14 13:29:11
Line 48  SUCH DAMAGE. Line 48  SUCH DAMAGE.
   
   
 #define DEF_RPC_TIMEOUT         3  #define DEF_RPC_TIMEOUT         3
   #define RPC_ERROR(x)            htonl((x))
   
 #define STRSIZ                  256  #define STRSIZ                  256
   
Line 59  SUCH DAMAGE. Line 60  SUCH DAMAGE.
                         rpc_Errno = errno; \                          rpc_Errno = errno; \
                         strlcpy(rpc_Error, strerror(errno), STRSIZ); \                          strlcpy(rpc_Error, strerror(errno), STRSIZ); \
                 } while(0)                  } while(0)
   
   #ifdef NDEBUG
   #define FTRACE()
   #define LOGGER()
   #else
   #define FTRACE()                ioTRACE(0)
   #define LOGGER(fmt, ...)        ioLOGGER(LOG_NOTICE, (fmt), ## __VA_ARGS__)
   #endif
   
   
 extern int rpc_Errno;  extern int rpc_Errno;

Removed from v.1.3.6.1  
changed lines
  Added in v.1.3.6.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>