diff options
| author | Stephen Hemminger <shemminger@vyatta.com> | 2011-12-07 00:55:15 +0400 |
|---|---|---|
| committer | Denis Ovsienko <infrastation@yandex.ru> | 2011-12-07 01:31:16 +0400 |
| commit | 004b1238a21b9b6c28640f37213dc85f0da39abe (patch) | |
| tree | ba53bb8efe76832ece8fd0545d50f2ddee82f2d5 /lib/smux.c | |
| parent | 3c14ebb0810e73ad899ae45e5fb2758153057e0e (diff) | |
lib: fix SMUX compiler warnings
Make progname a string, and cast when calling asn1.
Remove variable set but never used.
Diffstat (limited to 'lib/smux.c')
| -rw-r--r-- | lib/smux.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/smux.c b/lib/smux.c index 1941cf8ca7..b7cd18d14d 100644 --- a/lib/smux.c +++ b/lib/smux.c @@ -270,7 +270,6 @@ static void smux_getresp_send (oid objid[], size_t objid_len, long reqid, long errstat, long errindex, u_char val_type, void *arg, size_t arg_len) { - int ret; u_char buf[BUFSIZ]; u_char *ptr, *h1, *h1e, *h2, *h2e; size_t len, length; @@ -326,7 +325,7 @@ smux_getresp_send (oid objid[], size_t objid_len, long reqid, long errstat, if (debug_smux) zlog_debug ("SMUX getresp send: %td", (ptr - buf)); - ret = send (smux_sock, buf, (ptr - buf), 0); + send (smux_sock, buf, (ptr - buf), 0); } static u_char * @@ -946,7 +945,7 @@ smux_open (int sock) u_char *ptr; size_t len; long version; - u_char progname[] = QUAGGA_PROGNAME "-" QUAGGA_VERSION; + const char progname[] = QUAGGA_PROGNAME "-" QUAGGA_VERSION; if (debug_smux) { @@ -977,7 +976,7 @@ smux_open (int sock) ptr = asn_build_string (ptr, &len, (u_char) (ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_OCTET_STR), - progname, strlen (progname)); + (const u_char *) progname, strlen (progname)); /* SMUX connection password. */ ptr = asn_build_string (ptr, &len, |
