]> sourceware.org Git - lvm2.git/commitdiff
Fix warnings in daemons/common.
authorPetr Rockai <prockai@redhat.com>
Wed, 31 Aug 2011 12:18:40 +0000 (12:18 +0000)
committerPetr Rockai <prockai@redhat.com>
Wed, 31 Aug 2011 12:18:40 +0000 (12:18 +0000)
daemons/common/daemon-client.c
daemons/common/daemon-server.c
daemons/common/daemon-shared.c

index 3edcb8bd01e115cb34caa65f74fc8ebdccbdb732..f3a50c27e5ac0919b2e0813248baf86937087fea 100644 (file)
@@ -4,6 +4,7 @@
 #include <sys/socket.h>
 #include <string.h>
 #include <stdio.h>
+#include <unistd.h>
 #include <assert.h>
 #include <errno.h> // ENOMEM
 
@@ -53,7 +54,7 @@ daemon_reply daemon_send(daemon_handle h, daemon_request rq)
 
 void daemon_reply_destroy(daemon_reply r) {
        if (r.cft)
-               destroy_config_tree(r.cft);
+               dm_config_destroy(r.cft);
 }
 
 daemon_reply daemon_send_simple(daemon_handle h, char *id, ...)
index 468bdc17c82fc22cf192f7e8260310dee0f53f4e..9ec14a7b2b53073113886947da08aff9eae28133 100644 (file)
@@ -218,14 +218,14 @@ struct thread_baton {
        client_handle client;
 };
 
-int buffer_rewrite(char **buf, const char *format, const char *string) {
+static int buffer_rewrite(char **buf, const char *format, const char *string) {
        char *old = *buf;
        dm_asprintf(buf, format, *buf, string);
        dm_free(old);
        return 0;
 }
 
-int buffer_line(const char *line, void *baton) {
+static int buffer_line(const char *line, void *baton) {
        response *r = baton;
        if (r->buffer)
                buffer_rewrite(&r->buffer, "%s\n%s", line);
@@ -234,7 +234,7 @@ int buffer_line(const char *line, void *baton) {
        return 0;
 }
 
-void *client_thread(void *baton)
+static void *client_thread(void *baton)
 {
        struct thread_baton *b = baton;
        request req;
@@ -266,7 +266,7 @@ fail:
        return NULL;
 }
 
-int handle_connect(daemon_state s)
+static int handle_connect(daemon_state s)
 {
        struct sockaddr_un sockaddr;
        client_handle client;
@@ -345,7 +345,6 @@ void daemon_start(daemon_state s)
                s.daemon_init(&s);
 
        while (!_shutdown_requested && !failed) {
-               int status;
                fd_set in;
                FD_ZERO(&in);
                FD_SET(s.socket_fd, &in);
index ebaa27ee1352d12d9d01a6a8e0f2bdeca4be19b4..75f8b3a013a96232ecc3a923ef30c3fb7387a8d9 100644 (file)
@@ -2,6 +2,7 @@
 #include <stdio.h>
 #include <malloc.h>
 #include <string.h>
+#include <unistd.h>
 #include <assert.h>
 #include "daemon-shared.h"
 
@@ -80,7 +81,7 @@ char *format_buffer(const char *what, const char *id, va_list ap)
        dm_asprintf(&buffer, "%s = \"%s\"\n", what, id);
        if (!buffer) goto fail;
 
-       while (next = va_arg(ap, char *)) {
+       while ((next = va_arg(ap, char *))) {
                old = buffer;
                assert(strchr(next, '='));
                keylen = strchr(next, '=') - next;
This page took 0.04218 seconds and 5 git commands to generate.