diff options
author | Mattias Andrée <m@maandree.se> | 2024-10-05 23:23:17 +0200 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2024-10-05 23:23:17 +0200 |
commit | 98a8ac8498974e499fc129878ab05b9a7bf8ba30 (patch) | |
tree | 2914967687516632a93da9af59818f22d3120861 /src/mds-server/sending.c | |
parent | Update e-mail (diff) | |
download | mds-98a8ac8498974e499fc129878ab05b9a7bf8ba30.tar.gz mds-98a8ac8498974e499fc129878ab05b9a7bf8ba30.tar.bz2 mds-98a8ac8498974e499fc129878ab05b9a7bf8ba30.tar.xz |
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/mds-server/sending.c')
-rw-r--r-- | src/mds-server/sending.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mds-server/sending.c b/src/mds-server/sending.c index 95123eb..5b91b01 100644 --- a/src/mds-server/sending.c +++ b/src/mds-server/sending.c @@ -1,6 +1,6 @@ /** * mds — A micro-display server - * Copyright © 2014, 2015, 2016, 2017 Mattias Andrée (maandree@kth.se) + * Copyright © 2014, 2015, 2016, 2017 Mattias Andrée (m@maandree.se) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -175,7 +175,7 @@ void multicast_message(multicast_t *multicast) /* Act upon the reply. */ mod = client->modify_message; for (i = 0; i < mod->header_count; i++) { - if (strequals(mod->headers[i], "Modify: yes")) { + if (streq(mod->headers[i], "Modify: yes")) { modifying = 1; consumed = mod->payload_size == 0; break; |