search for: 10fa0d3

Displaying 2 results from an estimated 2 matches for "10fa0d3".

Did you mean: 100d3
2016 Dec 24
0
[PATCH] lib: Use a common function to validate strings.
...-- src/guestfs-internal-frontend.h | 3 ++ src/unit-tests.c | 40 +++++++++++++++++++++++++ src/utils.c | 50 +++++++++++++++++++++++++++++-- 6 files changed, 110 insertions(+), 74 deletions(-) diff --git a/python/Makefile.am b/python/Makefile.am index 486b52e..10fa0d3 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -95,6 +95,7 @@ setup-install: setup.py stamp-extra-files # Python's crappy MANIFEST file cannot graft single files, so we have # to hard-link any extra files we need into the local directory. stamp-extra-files: \ + c-ctype.h \...
2016 Dec 24
2
[PATCH] lib: Use a common function to validate strings.
As discussed in the thread on validating $TERM, it would be good to have a common function to do this. This is such a function. The main advantage is it includes unit tests which the previous functions did not. Rich.