0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-02 13:48:53 +02:00

ircd::db: Don't override uuid gen.

This commit is contained in:
Jason Volk 2018-09-20 22:00:11 -07:00
parent 9c64ae50e4
commit 795d62b1c7

View file

@ -4323,7 +4323,8 @@ const noexcept try
id, max_size
};
return size(fs::uuid(fd, buf));
//return size(fs::uuid(fd, buf));
return 0;
}
catch(const std::exception &e)
{
@ -5040,7 +5041,8 @@ const noexcept try
id, max_size
};
return size(fs::uuid(fd, buf));
//return size(fs::uuid(fd, buf));
return 0;
}
catch(const std::exception &e)
{