mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-19 02:29:31 -05:00
CLEANUP: haproxy: fix typos in code comment
Use "from" instead of "form" in ha_random_boot function code comments.
This commit is contained in:
parent
62c9d51ca4
commit
534e7e4598
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue