diff options
author | Sami Kerola | 2017-07-29 23:14:34 +0200 |
---|---|---|
committer | Sami Kerola | 2017-08-05 10:58:25 +0200 |
commit | 8cfbd350482cffbfbfbf1edee26226fe00bbc7d7 (patch) | |
tree | 4a0a601c4375beda593094dfc714e0fa9c5a1e6b /tests | |
parent | vipw: use explicit_bzero() to clear buffer after copy (diff) | |
download | kernel-qcow2-util-linux-8cfbd350482cffbfbfbf1edee26226fe00bbc7d7.tar.gz kernel-qcow2-util-linux-8cfbd350482cffbfbfbf1edee26226fe00bbc7d7.tar.xz kernel-qcow2-util-linux-8cfbd350482cffbfbfbf1edee26226fe00bbc7d7.zip |
uuidparse: nil uuid have all bits set to zero
The nil UUID is special form of UUID that is specified to have all 128 bits
set to zero.
Reference: https://tools.ietf.org/html/rfc4122#section-4.1.7
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/expected/uuid/uuidparse | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/expected/uuid/uuidparse b/tests/expected/uuid/uuidparse index 7fc64bcd2..c4959be8d 100644 --- a/tests/expected/uuid/uuidparse +++ b/tests/expected/uuid/uuidparse @@ -6,20 +6,20 @@ UUID VARIANT TYPE TIME 00000000-0000-4000-0000-000000000000 NCS random 00000000-0000-5000-0000-000000000000 NCS sha1-based 00000000-0000-6000-0000-000000000000 NCS unknown -00000000-0000-0000-8000-000000000000 DCE nil +00000000-0000-0000-8000-000000000000 DCE unknown 00000000-0000-2000-8000-000000000000 DCE DCE 00000000-0000-3000-8000-000000000000 DCE name-based 00000000-0000-4000-8000-000000000000 DCE random 00000000-0000-5000-8000-000000000000 DCE sha1-based 00000000-0000-6000-8000-000000000000 DCE unknown -00000000-0000-0000-d000-000000000000 Microsoft nil +00000000-0000-0000-d000-000000000000 Microsoft unknown 00000000-0000-1000-d000-000000000000 Microsoft time-based 00000000-0000-2000-d000-000000000000 Microsoft DCE 00000000-0000-3000-d000-000000000000 Microsoft name-based 00000000-0000-4000-d000-000000000000 Microsoft random 00000000-0000-5000-d000-000000000000 Microsoft sha1-based 00000000-0000-6000-d000-000000000000 Microsoft unknown -00000000-0000-0000-f000-000000000000 other nil +00000000-0000-0000-f000-000000000000 other unknown 00000000-0000-1000-f000-000000000000 other time-based 00000000-0000-2000-f000-000000000000 other DCE 00000000-0000-3000-f000-000000000000 other name-based |