commit | e3ec272f57c3948834a6159cf2604978d3db67a0 | [log] [tgz] |
---|---|---|
author | Chaim Sanders <csanders-git@users.noreply.github.com> | Wed Nov 02 11:41:20 2022 -0700 |
committer | GitHub <noreply@github.com> | Wed Nov 02 19:41:20 2022 +0100 |
tree | f51493a96f08ed69ad6571ea9c35aec27b334ae1 | |
parent | 3d889dc0a0efa6fcbd984ece365c9ac08d2cd4a9 [diff] |
gh-98415: Fix uuid.getnode() ifconfig implementation (#98423) The uuid.getnode() function has multiple implementations, tested sequentially. The ifconfig implementation was incorrect and always failed: fix it. In practice, functions of libuuid library are preferred, if available: uuid_generate_time_safe(), uuid_create() or uuid_generate_time(). Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>