Displaying 7 results from an estimated 7 matches for "debugv".
Did you mean:
debug
2014 Nov 24
5
[PATCH] rpm: use librpm's rpmvercmp
.../librpm-c.c
index 1ae3bad..fc847d6 100644
--- a/src/librpm-c.c
+++ b/src/librpm-c.c
@@ -122,6 +122,12 @@ supermin_rpm_version (value unit)
}
value
+supermin_rpm_vercmp (value av, value bv)
+{
+ return Val_int (rpmvercmp (String_val (av), String_val (bv)));
+}
+
+value
supermin_rpm_open (value debugv)
{
CAMLparam1 (debugv);
@@ -445,6 +451,12 @@ supermin_rpm_version (value unit)
}
value
+supermin_rpm_vercmp (value av, value bv)
+{
+ abort ();
+}
+
+value
supermin_rpm_open (value debugv)
{
abort ();
diff --git a/src/librpm.ml b/src/librpm.ml
index aa8d367..8c30248 100644
--- a/src/l...
2008 Nov 01
2
antispam plugin problem
...o spam folder does not work, giving the error message
'Failed to call dspam' to client.
I tried to add some debug output and here are the results:
This is the output of debug("calling dspam: %s %s %s %s %s %s %s", argv[0],
argv[1], argv[2], argv[3], argv[4], argv[5], argv[6]);
(debugv(argv) does not produce any output for some reason)
Oct 26 02:37:12 qqqqq imap: antispam: calling dspam:
/usr/contrib/bin/dspam --source=error --class=spam --signature=490387db858421194018847
--user genie (null)
This is the captured output of forked process
Oct 26 02:37:12 qsar imap: antispam: dsp...
2014 Sep 17
4
[PATCH 0/2] supermin: use librpm for rpm support
Hi,
this work makes supermin use the rpm library instead of invoking rpm
directly. This, together with a needed refactoring of the dependency
resolution, should help in make supermin faster on rpm-based systems.
Surely the patches will still need polishing, especially for behaviours
of newly added stuff, but at least it's a good starting point.
Noting that you need rpm-devel on most of rpm
2014 Sep 25
2
TRIPPLITE OMNIVSINT80 Compatibility
...': input_voltage_nominal =
input_voltage_scaled = 230;
break;
case '3': input_voltage_nominal = 208;
input_voltage_scaled = 230;
break;
default:
upslogx(2, "Unknown input voltage range: 0x%02x", (unsigned int)ivn);
break;
}
...
given ups.debugV[1] has the value 0.
Anyway I can sort of live with it as it is and apply the correction factor externally.
Dave
2008 Nov 05
3
Another dovecot-antispam plugin can't call dspam
Hi folks -
I am configuring a new system and the antispam plugin is the last piece
I need, everything else is working. Thanks to Johannes for this plugin,
it's exactly what I want and an elegant solution for filter training.
But I've been trying everything I can think of for the last 3 days to
get this to work, no success.
I've got: Postfix 2.5.3, dspam 3.8.0, Dovecot 1.1.6,
2014 Sep 26
0
TRIPPLITE OMNIVSINT80 Compatibility
...ic constant" in the "input.voltage" and "output.voltage" calculations for your protocol.
https://github.com/networkupstools/nut/blob/master/drivers/tripplite_usb.c#L1240
https://github.com/networkupstools/nut/blob/master/drivers/tripplite_usb.c#L1360
[...]
> given ups.debugV[1] has the value 0.
Ugh, that code is a mess. I should find the guy who wrote that driver and... never mind.
For some reason that made sense at the time, the "ups.debug.*" variables in tripplite_usb actually start printing from value+1 (I suppose because v_value[0] is always 'V'...
2019 Apr 12
6
[supermin PATCH 0/5] rpm: fix package selection w/ multilib
This patch series fixes the way supermin sorts the list of installed
packages when resolving a name, picking the right package for the host
architecture.
Pino Toscano (5):
rpm: do not unpack parameters
rpm: fix version comparison
rpm: query the RPM architecture
rpm: fix package sorting (RHBZ#1696822)
utils: remove unused 'compare_architecture' function
src/librpm-c.c | 10