Custom Query (204 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1 - 3 of 204)

1 2 3 4 5 6 7 8 9 10 11
Ticket Resolution Summary Owner Reporter
#6 fixed file: zmagic code fails on fork() Yuri Dario
Description

Forking in zmagic code fails when invoked from magic.dll; replace fork() with spawn() for better performances.

#8 fixed coreutils: hostid does not support setting host id Yuri Dario
Description

From http://svn.netlabs.org/rpm/ticket/14, OS/2 hostid.exe support setting the current host id, while coreutils hostid can only report current value.

This code should work:

#include <sys/param.h>
#include <sys/sysctl.h>

#if __STDC__
long
sethostid(long hostid)
#else
long
sethostid(hostid)
	long hostid;
#endif
{
	int mib[2];

	mib[0] = CTL_KERN;
	mib[1] = KERN_HOSTID;
	if (sysctl(mib, 2, NULL, NULL, &hostid, sizeof hostid) == -1)
		return (-1);
	return (0);
}
#9 fixed clamav: ClamAV install Incomplete? Yuri Dario
Description

From http://svn.netlabs.org/rpm/ticket/12:

I tried to install ClamAV using yum: YUM INSTALL CLAMAV. Three files were downloaded:

clamav-0.96.4-2.oc00.i386.rpm clamav-data-0.96.4-2.oc00.i386.rpm clamav-lib-0.96.4-2.oc00.i386.rpm

and then extracted to various folders. No objects were created so it is hard to see how to use it. There is no clamd.exe to be found anywhere.

A quick look at http://rpm.netlabs.org/release/00/i386/i386/ shows there are other ClamAV files than the three above - aren't they supposed to be downloaded and installed also?

It seems the install of ClamAV is not completed using YUM...

Followup: This is only the ClamAV engine and command line scanner. To install freshclam, the -update package is needed. To install clamd, the -server package is required.

A new build is about to go into the experimental repo before night (I hope).

1 2 3 4 5 6 7 8 9 10 11
Note: See TracQuery for help on using queries.