Commit 7b8bfef2 7b8bfef29b7d1d30f5714bb951bd33fc40007cfa by Sergey Poznyakoff

Minor changes.

* examples/mta.c: Remove include mu_asprintf.h.
* libmu_auth/radius.c: Remove include inttostr.h.
* libmu_scm/mu_dbgport.c: Silence gcc warnings.
* libmu_sieve/extensions/pipe.c: Remove include <mu_dbm.h>.
* libmu_sieve/sieve-priv.h: Remove include mu_asprintf.h.
* maidag/python.c: Remove unused locals.
* python/libmu_py/address.c: Likewise.
* python/libmu_py/auth.c: Likewise.
* python/libmu_py/body.c: Likewise.
* python/libmu_py/secret.c: Likewise.
* python/libmu_py/stream.c: Likewise.
* python/libmu_py/url.c: Likewise.
* python/libmu_py/util.c: Likewise.
1 parent 44f275b8
......@@ -60,7 +60,6 @@
#include <sys/time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <mu_asprintf.h>
#include <mailutils/argcv.h>
#include <mailutils/mailutils.h>
......
......@@ -30,7 +30,6 @@
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#include <inttostr.h>
#include <mailutils/list.h>
#include <mailutils/iterator.h>
......
......@@ -58,7 +58,7 @@ _mu_debug_port_mark (SCM port)
static void
_mu_debug_port_flush (SCM port)
{
struct _mu_debug_port *dp = MU_DEBUG_PORT (port);
/* struct _mu_debug_port *dp = MU_DEBUG_PORT (port); */
/* FIXME: */
}
......
......@@ -39,7 +39,6 @@
#include <string.h>
#include <signal.h>
#include <regex.h>
#include <mu_dbm.h>
#include <mailutils/sieve.h>
#define ASSERT(expr, diag, ec) \
......
......@@ -18,7 +18,6 @@
Boston, MA 02110-1301 USA */
#include <mailutils/sieve.h>
#include <mu_asprintf.h>
#include <setjmp.h>
#include <string.h>
......
......@@ -25,7 +25,6 @@ int
python_check_msg (mu_message_t msg, struct mu_auth_data *auth,
const char *prog)
{
int status;
PyMessage *py_msg;
mu_py_dict dict[2];
mu_py_script_data data[1];
......
......@@ -103,7 +103,6 @@ static PyObject *
api_address_createv (PyObject *self, PyObject *args)
{
int status;
char *str;
PyAddress *py_addr;
PyObject *py_seq;
char **sv;
......
......@@ -574,7 +574,6 @@ api_register_module (PyObject *self, PyObject *args)
static PyObject *
api_get_auth_by_name (PyObject *self, PyObject *args)
{
int status;
char *username;
PyAuthData *py_ad = PyAuthData_NEW ();
......@@ -593,7 +592,6 @@ api_get_auth_by_name (PyObject *self, PyObject *args)
static PyObject *
api_get_auth_by_uid (PyObject *self, PyObject *args)
{
int status;
uid_t uid;
PyAuthData *py_ad = PyAuthData_NEW ();
......
......@@ -111,7 +111,6 @@ static PyObject *
api_body_get_stream (PyObject *self, PyObject *args)
{
int status;
size_t lines;
PyBody *py_body;
PyStream *py_stm = PyStream_NEW ();
......
......@@ -116,7 +116,6 @@ api_secret_destroy (PyObject *self, PyObject *args)
static PyObject *
api_secret_password (PyObject *self, PyObject *args)
{
int status;
const char *pass;
PySecret *py_secret;
......
......@@ -119,7 +119,6 @@ static PyObject *
api_stdio_stream_create (PyObject *self, PyObject *args)
{
int status, flags;
char *filename;
FILE *fp;
PyStream *py_stm;
PyFileObject *py_file;
......
......@@ -242,7 +242,6 @@ api_url_get_query (PyObject *self, PyObject *args)
static PyObject *
api_url_to_string (PyObject *self, PyObject *args)
{
int status;
const char *str;
PyUrl *py_url;
......
......@@ -25,7 +25,6 @@
static PyObject *
api_util_get_user_email (PyObject *self, PyObject *args)
{
int status;
char *name = NULL;
char *email = NULL;
......