aboutsummaryrefslogtreecommitdiff
path: root/lib/libalarm.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libalarm.c')
-rw-r--r--lib/libalarm.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/libalarm.c b/lib/libalarm.c
index 6140580..9dc9ae0 100644
--- a/lib/libalarm.c
+++ b/lib/libalarm.c
@@ -57,11 +57,7 @@ int send_string(int sock, char *buffer)
/* Helper function */
int send_packet_uuid(int sock, uint32_t packet_type, uuid_t uuid)
{
- uint32_t packet_type_n = 0;
-
- packet_type_n = htonl(packet_type);
-
- return (send(sock, &packet_type_n, sizeof(packet_type_n), 0) != sizeof(packet_type_n)
+ return (send(sock, &packet_type, sizeof(packet_type), 0) != sizeof(packet_type)
|| send(sock, uuid, 16, 0) != 16);
}
@@ -73,7 +69,7 @@ int alarmd_register(int sock, char *desc, uuid_t *uuid)
uint8_t length = 0;
uint32_t packet_type = 0;
- packet_type = htonl(ALARMD_PACKET_TYPE_REGISTER);
+ packet_type = ALARMD_PACKET_TYPE_REGISTER;
if (send(sock, &packet_type, sizeof(packet_type), 0) != sizeof(packet_type)) {
perror("send");
return 1;