aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2024-05-05 21:56:23 +0200
committerTheJackiMonster <thejackimonster@gmail.com>2024-05-05 21:56:23 +0200
commit863c8769af56308afc94704f4788f9b176f26c5d (patch)
tree73680ace32dc489d6a37e9974b8396561edf4892
parent54a00fd0ea7aea2b432fe5f51b48ff613173e907 (diff)
downloadgnunet-863c8769af56308afc94704f4788f9b176f26c5d.tar.gz
gnunet-863c8769af56308afc94704f4788f9b176f26c5d.zip
-fix redundant packed attribute and add tests to gitignore
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
-rw-r--r--src/include/gnunet_messenger_service.h2
-rw-r--r--src/lib/util/.gitignore2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/include/gnunet_messenger_service.h b/src/include/gnunet_messenger_service.h
index f6f581257..3f039f944 100644
--- a/src/include/gnunet_messenger_service.h
+++ b/src/include/gnunet_messenger_service.h
@@ -79,7 +79,7 @@ struct GNUNET_MESSENGER_RoomEntryRecord
79 /** 79 /**
80 * The peer identity of an open door to a room. 80 * The peer identity of an open door to a room.
81 */ 81 */
82 struct GNUNET_PeerIdentity door GNUNET_PACKED; 82 struct GNUNET_PeerIdentity door;
83 83
84 /** 84 /**
85 * The hash identifying the port of the room. 85 * The hash identifying the port of the room.
diff --git a/src/lib/util/.gitignore b/src/lib/util/.gitignore
index c6306639c..c31c9ec28 100644
--- a/src/lib/util/.gitignore
+++ b/src/lib/util/.gitignore
@@ -20,6 +20,7 @@ test_container_meta_data
20test_container_multihashmap 20test_container_multihashmap
21test_container_multihashmap32 21test_container_multihashmap32
22test_container_multipeermap 22test_container_multipeermap
23test_crypto_blind
23test_crypto_crc 24test_crypto_crc
24test_crypto_ecc_dlog 25test_crypto_ecc_dlog
25test_crypto_ecdh_ecdsa 26test_crypto_ecdh_ecdsa
@@ -28,6 +29,7 @@ test_crypto_ecdhe
28test_crypto_ecdsa 29test_crypto_ecdsa
29test_crypto_eddsa 30test_crypto_eddsa
30test_crypto_edx25519 31test_crypto_edx25519
32test_crypto_elligator
31test_crypto_hash 33test_crypto_hash
32test_crypto_hash_context 34test_crypto_hash_context
33test_crypto_hkdf 35test_crypto_hkdf