search for: a7519ec

Displaying 2 results from an estimated 2 matches for "a7519ec".

Did you mean: 17519e0
2018 Feb 07
0
[nbdkit PATCH v2 2/2] utils: Revamp nbdkit_parse_size
...o support in the future */ { "M", -1 }, - /* { "1MB", -1 }, */ - /* { "1MiB", -1 }, */ + { "1MB", -1 }, + { "1MiB", -1 }, { "1.5M", -1 }, /* Valid strings */ diff --git a/src/utils.c b/src/utils.c index 5663043..a7519ec 100644 --- a/src/utils.c +++ b/src/utils.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013 Red Hat Inc. + * Copyright (C) 2013-2018 Red Hat Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -80,49 +80,78 @@ nbdkit_absolute_path (const char...
2018 Feb 07
3
[nbdkit PATCH v2 0/2] Improve nbdkit_parse_size
Take two, this time split into two patches. I liked Rich's suggestion of unit-testing src/ files directly in src/, and automake is a lot happier with this than with my v1 attempt that tried to compile .c files across directories. It's still enough of a change that I'm not pushing it right away. Eric Blake (2): build: Add unit-testing of internal files utils: Revamp