Re: [libvirt PATCH 02/17] util: Simplify stubs

2021-03-08 Thread Andrea Bolognani
On Mon, 2021-03-08 at 11:31 +0100, Michal Privoznik wrote: > On 3/5/21 8:13 PM, Andrea Bolognani wrote: > > Calling a stub should always result in ENOSYS being raised, > > regardless of what arguments are passed to it. > > > > Signed-off-by: Andrea Bolognani > > --- > > src/util/virprocess.c |

Re: [libvirt PATCH 02/17] util: Simplify stubs

2021-03-08 Thread Michal Privoznik
On 3/5/21 8:13 PM, Andrea Bolognani wrote: Calling a stub should always result in ENOSYS being raised, regardless of what arguments are passed to it. Signed-off-by: Andrea Bolognani --- src/util/virprocess.c | 22 ++ 1 file changed, 6 insertions(+), 16 deletions(-)

[libvirt PATCH 02/17] util: Simplify stubs

2021-03-05 Thread Andrea Bolognani
Calling a stub should always result in ENOSYS being raised, regardless of what arguments are passed to it. Signed-off-by: Andrea Bolognani --- src/util/virprocess.c | 22 ++ 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/src/util/virprocess.c