The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header.
To mitigate this problem, the original message has been wrapped automatically by the mailing list software.
--- Begin Message ---Sorry, of course you are right. Thanks! I have also tried a few different solutions to the SPF/DMARC issue, but still haven't found a solution. I will send the new version soon. Regards, Ole Kristian -----Original Message----- From: Rafał Miłecki <zaj...@gmail.com> Sent: torsdag 5. mai 2022 17:13 To: Ole Kristian Lona <ole.krist...@lona.name>; o...@oklona.net; openwrt-devel@lists.openwrt.org Subject: Re: [PATCH V2] tplink-safeloader: Patch to handle partitions with alternate names. On 5.05.2022 16:33, Ole Kristian Lona wrote: > I removed those "const" qualifiers to get rid of the error message about > "assignments discards 'const' qualifiers"... If I in addition make > flash_partition_entry a const, the file won't compile any more, since we are > adjusting the value of flash_partition_entry "info->partitions" in line 3360. > > I tried a few different variants of using "const", but could not find a > combination that actually works, and yields no error message. Please doble verify that. Do you really get any warnings with change as below? I just tested it and it seems to work diff --git a/src/tplink-safeloader.c b/src/tplink-safeloader.c index 93b2450..526f709 100644 --- a/src/tplink-safeloader.c +++ b/src/tplink-safeloader.c @@ -48,18 +48,18 @@ struct image_partition_entry { /** A flash partition table entry */ struct flash_partition_entry { - char *name; + const char *name; uint32_t base; uint32_t size; }; /** Flash partition names table entry */ struct factory_partition_names { - char *partition_table; - char *soft_ver; - char *os_image; - char *file_system; - char *extra_para; + const char *partition_table; + const char *soft_ver; + const char *os_image; + const char *file_system; + const char *extra_para; }; /** Partition trailing padding definitions
--- End Message ---
_______________________________________________ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel