diff options
| author | Arne Schwabe <arne@rfc2549.org> | 2012-05-09 23:17:23 +0200 | 
|---|---|---|
| committer | Arne Schwabe <arne@rfc2549.org> | 2012-05-09 23:17:23 +0200 | 
| commit | dd43bc7edc3e0d1fc5db8ba94e2e931799bc93bc (patch) | |
| tree | 6dd430ffbcbb32bd1604d7779d5a51d4ff56973a /openvpn/src | |
| parent | e86d8b67696568b17854ccdc846191dc9635841d (diff) | |
small fixed
Diffstat (limited to 'openvpn/src')
| -rw-r--r-- | openvpn/src/openvpn/error.c | 15 | ||||
| -rw-r--r-- | openvpn/src/openvpn/socket.c | 1 | 
2 files changed, 1 insertions, 15 deletions
| diff --git a/openvpn/src/openvpn/error.c b/openvpn/src/openvpn/error.c index 83a9eb4b..e2e24b1e 100644 --- a/openvpn/src/openvpn/error.c +++ b/openvpn/src/openvpn/error.c @@ -199,11 +199,6 @@ msg_fp(const unsigned int flags)  int x_msg_line_num; /* GLOBAL */ -#include "android/log.h" -  - - -  void x_msg (const unsigned int flags, const char *format, ...)  {    struct gc_arena gc; @@ -219,7 +214,6 @@ void x_msg (const unsigned int flags, const char *format, ...)    const char *prefix_sep;    void usage_small (void); -      #ifndef HAVE_VARARG_MACROS    /* the macro has checked this otherwise */ @@ -304,12 +298,10 @@ void x_msg (const unsigned int flags, const char *format, ...)    if (!prefix)      prefix_sep = prefix = ""; -    /* virtual output capability used to copy output to management subsystem */    if (!forked)      {        const struct virtual_output *vo = msg_get_virtual_output (); -                if (vo)  	{  	  openvpn_snprintf (m2, ERR_BUF_SIZE, "%s%s%s", @@ -331,7 +323,7 @@ void x_msg (const unsigned int flags, const char *format, ...)                      m1);   #endif          } -        else // No Syslog +      else          {              FILE *fp = msg_fp(flags);              const bool show_usec = check_debug_level (DEBUG_LEVEL_USEC_TIME); @@ -356,13 +348,8 @@ void x_msg (const unsigned int flags, const char *format, ...)              fflush(fp);              ++x_msg_line_num;          } -#ifdef TARGET_ANDROID -        android_openvpn_log(prefix,prefix_sep,m1);; -#endif      } - -        if (flags & M_FATAL)      msg (M_INFO, "Exiting due to fatal error"); diff --git a/openvpn/src/openvpn/socket.c b/openvpn/src/openvpn/socket.c index 71010979..b92c2828 100644 --- a/openvpn/src/openvpn/socket.c +++ b/openvpn/src/openvpn/socket.c @@ -859,7 +859,6 @@ create_socket_tcp (void)        msg (M_SOCKERR, "TCP: Cannot setsockopt SO_LINGER on TCP socket");    }  #endif -      return sd;  } | 
