diff options
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; |