From: Nicolas CARPi Date: Tue, 27 Aug 2024 20:02:17 +0000 (+0200) Subject: CLEANUP: haproxy: fix typos in code comment X-Git-Tag: v3.1-dev7~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=534e7e45988bbbe6244e30445d84f7e2a665dc7e;p=thirdparty%2Fhaproxy.git CLEANUP: haproxy: fix typos in code comment Use "from" instead of "form" in ha_random_boot function code comments. --- diff --git a/src/haproxy.c b/src/haproxy.c index f7bb5b5d8c..21cdcb3404 100644 --- a/src/haproxy.c +++ b/src/haproxy.c @@ -1417,11 +1417,11 @@ static void ha_random_boot(char *const *argv) m += 4; } - /* stack address (benefit form operating system's ASLR) */ + /* stack address (benefit from operating system's ASLR) */ l = (unsigned long)&m; memcpy(m, &l, sizeof(l)); m += sizeof(l); - /* argv address (benefit form operating system's ASLR) */ + /* argv address (benefit from operating system's ASLR) */ l = (unsigned long)&argv; memcpy(m, &l, sizeof(l)); m += sizeof(l);