Cast the enum in rwrite() when calling send_msg().
authorWayne Davison <wayned@samba.org>
Wed, 3 May 2006 16:58:36 +0000 (16:58 +0000)
committerWayne Davison <wayned@samba.org>
Wed, 3 May 2006 16:58:36 +0000 (16:58 +0000)
log.c

diff --git a/log.c b/log.c
index 4abc3d5..7fd37e4 100644 (file)
--- a/log.c
+++ b/log.c
@@ -256,7 +256,7 @@ void rwrite(enum logcode code, char *buf, int len)
 
        if (am_server) {
                /* Pass the message to the non-server side. */
-               if (send_msg(code, buf, len))
+               if (send_msg((enum msgcode)code, buf, len))
                        return;
                if (am_daemon) {
                        /* TODO: can we send the error to the user somehow? */