diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-05-18 07:51:03 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-05-18 07:51:03 +0200 |
commit | 05f9221fff81eaf4d1677958700a6ffc8c61c10c (patch) | |
tree | a74fb805e9409f42846b0ac7cd2502531d04b2a9 /src | |
parent | reduce code complexity (diff) | |
download | mds-05f9221fff81eaf4d1677958700a6ffc8c61c10c.tar.gz mds-05f9221fff81eaf4d1677958700a6ffc8c61c10c.tar.bz2 mds-05f9221fff81eaf4d1677958700a6ffc8c61c10c.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mds-server/mds-server.c | 3 | ||||
-rw-r--r-- | src/mds.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/mds-server/mds-server.c b/src/mds-server/mds-server.c index c9e41c0..0d669ad 100644 --- a/src/mds-server/mds-server.c +++ b/src/mds-server/mds-server.c @@ -137,6 +137,7 @@ static pthread_cond_t modify_cond; static hash_table_t modify_map; + /** * Entry point of the server * @@ -1308,7 +1309,7 @@ void multicast_message(multicast_t* multicast) } /* Do not wait for a reply if it is non-modifying. */ - if (client_.modifying) + if (client_.modifying == 0) { /* Reset how much of the message has been sent before we continue with next recipient. */ multicast->message_ptr = 0; @@ -510,7 +510,7 @@ int unlink_recursive(const char* pathname) eprint("pop"); } - /* Remvoe the drectory. */ + /* Remove the drectory. */ if (rmdir(pathname) < 0) goto pfail; |