search for: kis

Displaying 20 results from an estimated 24 matches for "kis".

Did you mean: is
2002 Aug 26
0
[ANNOUNCE] Release of iptables-1.2.7a
...;=3D 2.4.18 Bugs Fixed from 1.2.6a: - fix compiler warning in userspace support for ipv6 REJECT target [ Fabrice Marie ] - check for invalid portranges in tcp+udp helper (e.g. 2000:100) [ Thomas Poehnitz ] - fix save save/restore functions of ip6tables tcp/udp extension [ Harald Welte / Andras Kis-Szabo ] - check for invalid (out of range) nfmark values in MARK target [ Alexey ??? ] - fix save function of MASQUERADE userspace support [ A. van Schie ] - compile fixes for userspace suppot of experimental POOL target [ ? ] - fix save function of userspace support for ah and esp match [ ? ]...
2023 Feb 14
2
[PATCH 1/2] python: Avoid crash if callback parameters cannot be built
...c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/python/handle.c b/python/handle.c index c8752baf47..f37e939e03 100644 --- a/python/handle.c +++ b/python/handle.c @@ -134,18 +134,21 @@ guestfs_int_py_event_callback_wrapper (guestfs_h *g, args = Py_BuildValue ("(Kis#O)", (unsigned PY_LONG_LONG) event, event_handle, buf, buf_len, py_array); + if (args == NULL) { + PyErr_PrintEx (0); + goto out; + } + Py_INCREF (args); - py_r = PyObject_CallObject (py_callback, args); - Py_DECREF (args); -...
2002 Mar 14
0
[ANNOUNCE] Release of iptables-1.2.6
...et) [ Magnus Boden ] Changes from 1.2.5: - Added global PREFIX makefile variable for all paths [ Harald Welte ] - If compiled without any COPT_FLAGS, debugging is disabled. To enable debugging, use -DIPTC_DEBUG [ Harald Welte ] - New ip6tables-restore and ip6tables-save manpage [ Andras Kis-Szabo ]=20 - Sync ip6tables-restore and ip6tables-save with iptables-restore [ Andras Kis-Szabo ] - Sync ip6tables with iptables [ Andras Kis-Szabo ] - mangle table attaches now to all five netfilter hooks [ Brad Chapman, Harald Welte ] - iptables and ip6tables manpage updates [ Herve Eychenne...
2002 Mar 17
0
[ANNOUNCE] Release of iptables-1.2.6a
...et) [ Magnus Boden ] Changes from 1.2.5: - Added global PREFIX makefile variable for all paths [ Harald Welte ] - If compiled without any COPT_FLAGS, debugging is disabled. To enable debugging, use -DIPTC_DEBUG [ Harald Welte ] - New ip6tables-restore and ip6tables-save manpage [ Andras Kis-Szabo ]=20 - Sync ip6tables-restore and ip6tables-save with iptables-restore [ Andras Kis-Szabo ] - Sync ip6tables with iptables [ Andras Kis-Szabo ] - mangle table attaches now to all five netfilter hooks [ Brad Chapman, Harald Welte ] - iptables and ip6tables manpage updates [ Herve Eychenne...
2023 Feb 14
2
[PATCH 2/2] python: Use bytes instead of str for event callback buffer
...a/python/handle.c b/python/handle.c index f37e939e03..bf639b5789 100644 --- a/python/handle.c +++ b/python/handle.c @@ -131,7 +131,7 @@ guestfs_int_py_event_callback_wrapper (guestfs_h *g, } /* XXX As with Perl we don't pass the guestfs_h handle here. */ - args = Py_BuildValue ("(Kis#O)", + args = Py_BuildValue ("(Kiy#O)", (unsigned PY_LONG_LONG) event, event_handle, buf, buf_len, py_array); if (args == NULL) { -- 2.39.0
2009 Nov 19
1
Strange server locks isuess with 2.0.7 - updating
Hi Marek, Is it possible for you to provide a backtrace of the crash? And can you file a bug report at bugs.gluster.com? Also if possible can you upgrade to 2.8 release and confirm whether you face the same problem? regards, ----- Original Message ----- From: "Marek" <mb at kis.p.lodz.pl> To: gluster-users at gluster.org Sent: Thursday, November 19, 2009 7:20:44 PM GMT +04:00 Abu Dhabi / Muscat Subject: Re: [Gluster-users] Strange server locks isuess with 2.0.7 - updating Andre Felipe Machado wrote: > Hello, > Try to disable flush behind option. > It behaves...
2003 Feb 17
2
shipro.test
...run this test (shapiro.test(rt(2000,30))) (R : Copyright 2001, The R Development Core Team Version 1.3.1 (2001-08-31)) for several times and results were different. Why do the shapiro.test produce different outputs? Thanks, -- Dr. Janos Korponai West-Transdanubian District Water Authority Dept. Kis-Balaton Csik F. str. 1 H-8360 Keszthely Hungary e-mail: korponai at georgikon.hu
2005 Jan 25
1
mutt's new mail error
...39;t use INDEX=MEMORY, I should not suffer from the problem. My config uses default_mail_env = maildir:~/Mail:INDEX=/var/indexes/%d/%n Do you have a hint regarding this problem ? Would a traffic dump be useful ? Thanks in advance, Fr?d?ric -- Fr?d?ric Gobry Infoscience DIT-KIS / EPFL Tel: +41216932288 http://people.epfl.ch/frederic.gobry -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: <http://dovecot.org/pipermail/dovecot/at...
2010 Nov 18
2
Testing Error: ActiveRecord::StatementInvalid
I intentionally deleted the attribute author from the table comments. When I used functional testing, I got the following message ActiveRecord::StatementInvalid: PGError: ERROR: column "author" of relation "comments" does not exist What should I need to do in order to avoid this error message!!! -- You received this message because you are subscribed to the Google Groups
2004 Jul 10
0
Root users shell
...has a disabled (*) password by default. What Brannon > > should have done was set a password for toor in the beginning, > > without mucking around with root's shell. > In 8 years of BSD administration I've never seen the toor > account used. IMO, as a matter of security, KIS, and for > improved cross-platform compatibility it should be removed from > the distribution. I've used it a few times. Since about 1996 I've used the ksh as the default root shell on all Unix systems I've admined - commercial distributions and FreeBSD. I also set up the comme...
2019 Jan 22
3
[PATCH v2 0/2] python: fixes for Python 3
A couple of fixes for Python 3 to the Python binding. Unfortunately a behaviour change is needed, although it fixes broken types used. Changes from v1: - handle also FBuffer in structs Pino Toscano (2): python: fix call of Python handlers of events python: change types for RBufferOut/FBuffer with Python 3 (RHBZ#1661871) generator/python.ml | 9 +++++++++ python/handle.c | 3 ++- 2
2006 May 02
2
Assertion failed
...el) Does anyone know a workaround or whether there is an older version that doesn't have the bug? We desperately need to get an email service running and I don't want to go back to (shudder) UW-imap if I can help it but my options are limited at the moment. -- ______ J.Knight at kis.keele.ac.uk Jonathan Knight, / Keele Information Services / _ __ Telephone: +44 1782 583478 University of Keele, Keele, (_/ (_) / / Fax : +44 1782 713082 Staffordshire. ST5 5BG. U.K.
2019 Jan 22
3
[PATCH 0/2] python: fixes for Python 3
A couple of fixes for Python 3 to the Python binding. Unfortunately a behaviour change is needed, although it fixes broken types used. Pino Toscano (2): python: fix call of Python handlers of events python: change return type for RBufferOut with Python 3 (RHBZ#1661871) generator/python.ml | 4 ++++ python/handle.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) -- 2.20.1
2004 Aug 04
4
ERROR: compilation failed for package 'rgl'
...y/rgl' daphnia:~# version _ platform i386-pc-linux-gnu arch i386 os linux-gnu system i386, linux-gnu status major 1 minor 9.0 year 2004 month 04 day 12 language R -- Dr. Janos Korponai West-Transdanubian District Environmental and Water Authority, Dept. Kis-Balaton H-8360 Keszthely, Csik F. str. 1, Hungary e-mail: korponai.janos at nyuduvizig.hu
2010 Jun 30
1
Long delays when launching programs for the first timein my Windows 7 Profile (Samba 3.4.3 as PDC)
> > ---- > Well -- not exactly -- I have almost the same symptom -- but > on logout -- it takes up to 45 minutes for my Win7 profile to be > copied to my PDC. But I've tried Samba 3.5.2, 3.5.3 and 3.5.3. > Hey...that's something to try. Try the latest released version and > see if you have the same symptoms/problems! I've not had these problems. (I
2023 Feb 17
1
[PATCH 1/2] python: Avoid crash if callback parameters cannot be built
...> > > diff --git a/python/handle.c b/python/handle.c > > index c8752baf47..f37e939e03 100644 > > --- a/python/handle.c > > +++ b/python/handle.c > > @@ -134,18 +134,21 @@ guestfs_int_py_event_callback_wrapper (guestfs_h *g, > > args = Py_BuildValue ("(Kis#O)", > > (unsigned PY_LONG_LONG) event, event_handle, > > buf, buf_len, py_array); According to https://docs.python.org/3/c-api/arg.html#building-values, "O" increments the count of py_array. So before the Py_BuildValue...
2002 Oct 02
2
R vs Fortran
Dear R experts I work in computational fluid dynamics in 2D: I have a 200-by-200 array of fluid properties such as density and velocity and these evolve in time (the precise equations depend on the problem). Up to now, I've been using Fortran and the code is very very messy. It works, but a professional programmer friend of mine saw the source code once, and had to be strapped down for his
2003 Sep 16
9
FreeBSD Security Advisory FreeBSD-SA-03:12.openssh
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 ============================================================================= FreeBSD-SA-03:12 Security Advisory FreeBSD, Inc. Topic: OpenSSH buffer management error Category: core, ports Module: openssh, ports_openssh,
2004 Jul 08
8
Root users shell == no existant shell /bin/bash
I made a mistake setting my shell and have set the root users shell to /bin/bash instead of /bin/sh. I am curiuos if anyone knows how to fix this. The machines is FreeBSD 4.8-RELEASE-p4 and does not have sudo only su.
1997 Apr 22
1
SNI-12: BIND Vulnerabilities and Solutions (fwd)
...edu or Finger for PGP Key --> kirk@kaybee.gt.ed.net http://www.kaybee.gt.ed.net/~kirk/html/index.html Resnet RTA (Residence Technical Advisor) GTRI Co-Op ---------- Forwarded message ---------- Date: Tue, 22 Apr 1997 23:13:57 +0400 (MSD) From: Dmitry Valdov <dv@kis.ru> To: freebsd-security@freebsd.org Subject: SNI-12: BIND Vulnerabilities and Solutions (fwd) Hello! Is fbsd 2.2.1 vulnerable? If yes are there any patches available specially for FreeBSD? ---------- Forwarded message ---------- Date: Tue, 22 Apr 1997 04:36:17 -0600 From: Oliver Friedrichs...