search for: redirs

Displaying 20 results from an estimated 229 matches for "redirs".

Did you mean: redir
2007 Aug 23
0
[git patch] klibc dash 0.5.4 update
...h/redir.c +++ b/usr/dash/redir.c @@ -345,26 +345,19 @@ popredir(int drop) INCLUDE "redir.h" RESET { - clearredir(0); -} - -#endif - -/* - * Discard all saved file descriptors. - */ - -void -clearredir(int drop) -{ + /* + * Discard all saved file descriptors. + */ for (;;) { nullredirs = 0; if (!redirlist) break; - popredir(drop); + popredir(0); } } +#endif + /* diff --git a/usr/dash/redir.h b/usr/dash/redir.h index 71f5202..74c1a7e 100644 --- a/usr/dash/redir.h +++ b/usr/dash/redir.h @@ -44,6 +44,6 @@ union node; void redirect(union node *, int); void popre...
2020 Mar 28
0
[klibc:update-dash] dash: redir: Handle nested exec within REALLY_CLOSED redirection
...sed to avoid an unnecessary close(2) call when restoring redirections. However, as it stands it can remove a close(2) call that's actually needed. This happens when an enclosed exec(1) command leaves an open file descriptor behind. This patch fixes this by replacing REALLY_CLOSED with closed_redirs to track the current status of redirected file descriptors and leaving redirlist to only handle the previous state of redirected file descriptors. Reported-by: Martijn Dekker <martijn at inlv.org> Fixes: ce0f1900d869 ("[REDIR] Fix redirect restore on saved file...") Signed-off-by:...
2016 Mar 22
2
samba 4.4rcx WINS nsswitch module
[root at mems ~]# valgrind --leak-check=full --show-leak-kinds=all -v ping google.com ==3135== Memcheck, a memory error detector ==3135== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al. ==3135== Using Valgrind-3.10.0 and LibVEX; rerun with -h for copyright info ==3135== Command: ping google.com ==3135== --3135-- Valgrind options: --3135-- --leak-check=full --3135--
2019 Jan 25
0
[klibc:update-dash] redir: Fix typo in noclobber code
Commit-ID: d1596f8b90d41f5382d6550c03826bed0ce82ffa Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=d1596f8b90d41f5382d6550c03826bed0ce82ffa Author: Herbert Xu <herbert at gondor.apana.org.au> AuthorDate: Mon, 26 Mar 2018 18:33:49 +0800 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Fri, 25 Jan 2019 02:57:21 +0000 [klibc] redir: Fix typo in
2020 Mar 28
0
[klibc:update-dash] dash: redir: Fix typo in noclobber code
Commit-ID: 4265f8d559e294cc39afce8cc6849341db751b0b Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=4265f8d559e294cc39afce8cc6849341db751b0b Author: Herbert Xu <herbert at gondor.apana.org.au> AuthorDate: Mon, 26 Mar 2018 18:33:49 +0800 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Sat, 28 Mar 2020 21:42:54 +0000 [klibc] dash: redir: Fix typo
2016 Mar 22
7
samba 4.4rcx WINS nsswitch module
WINS nsswitch module -------------------- The WINS nsswitch module has been rewritten to address memory issues and to simplify the code. The module now uses libwbclient to do WINS queries. This means that winbind needs to be running in order to resolve WINS names using the nss_wins module. This does not affect smbd. my problem: old versions >> ping google.com >> PING google.com
2007 Feb 28
0
RoR&Apache - htaccess rewrite directories fail?
On my server I have a directory at the root, /rails/ which contains other directories with rails projects. In my httpd.conf I have RewriteEngine On RewriteLog "logs/rewrite.log" RewriteLogLevel 9 RewriteCond %{REQUEST_URI} !^/rails/([^/]+)/public/ RewriteRule ^/rails/([^/]+)/?(.*)$ /rails/$1/public/$2 [QSA,L] So with a GET /rails/test/ you''d get sent to /rails/test/public/ and
2013 Oct 30
1
Folder redir : pb after moving user to subtree
Hi all, Not sure if it's Samba or AD relative, but there are experts here :-) So : New Samba 4.1 AD DC compiled from git New Domain provision Created : ou=users Setup GPO for user's Documents and Desktop redirection to samba [home] share, available offline, applied to ou=users Created users test1 and test2 in ou=users Loggued users test1 and test2 through Windows7 -> Everything
2002 Nov 27
5
transparent PAT
Hello, everyone! I would like to solve the following problem. Btw, I''m terribly sorry about the pseudo-asciiart, but that''s all I can paint as a tropology. I''m hoping it''ll be enough. ----Internet---- | | | eth0 machine A routing+ipchains eth1 | ------------------ machine B So, given I''m running kernel 2.4.19 and using ipchains
2006 Jan 25
32
[Bug 429] -j REDIRECT does not appear to work correctly
https://bugzilla.netfilter.org/bugzilla/show_bug.cgi?id=429 ------- Additional Comments From laforge@netfilter.org 2006-01-25 11:00 MET ------- Please specifically tell us about the exact kernel version, any patches that you might have applied, and the iptables version that you're using. -- Configure bugmail: https://bugzilla.netfilter.org/bugzilla/userprefs.cgi?tab=email ------- You
2002 Oct 25
0
rsync over stunnel or redir ( not ssh ) hangs
Hi rsyncers, as subject says im trying to tunnel rsync over stunnel. After a few files downloaded the connection get stuck and rsync times out. The same thing happens with redir, but with ssh works nicely. Well i realy need to tunnel rsync over stunnel or other secure alternative ( not VPN nor ssh ). Thx 4ur help. -- ______________________________________________________ Felipe Alvarez
2004 Oct 04
1
AD2003 +Squid NTLM Auth.
Authenticating Server: 2003 with Active Directory Enabled Squid Server: FreeBSD 5.1 Samba: 3.0.7,1 Other package info in package list at bottom. The DNS server is on the 2003 Server with the proper kerberos and ldap entries in the DNS server. (Passes Active Directory DNS utility tests) Responses are sent in LM, NTLM, &NTLM2 when negotiated. Signing requirements are not configured. (Choices:
2020 Mar 28
0
[klibc:update-dash] dash: mkinit: Split reset into exitreset and reset
Commit-ID: 7f799aacc75667708bafe8f4411891ec053d7d65 Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=7f799aacc75667708bafe8f4411891ec053d7d65 Author: Herbert Xu <herbert at gondor.apana.org.au> AuthorDate: Sat, 19 May 2018 02:39:40 +0800 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Sat, 28 Mar 2020 21:42:55 +0000 [klibc] dash: mkinit: Split
2011 Aug 28
3
[Bug 741] New: ULOGD segfaults on init
http://bugzilla.netfilter.org/show_bug.cgi?id=741 Summary: ULOGD segfaults on init Product: ulogd Version: SVN (please provide timestamp) Platform: i386 OS/Version: other Status: NEW Severity: blocker Priority: P5 Component: ulogd_MYSQL AssignedTo: netfilter-buglog at lists.netfilter.org
2010 Jan 25
1
Disa not fully bridging outbound call
Hello, I have a situation where a remote worker dials in to the asterisk server, enters the "secret code", then dials out via Disa on a PRI. This was all working great until this morning. Now the calls is placed out, connected but there is no voice from/to either phone. This is what shows on the CLI when the calls is bridged at a verbose of 4 and a debug of 1: [Jan 25 17:51:40] --
2020 Mar 28
0
[klibc:update-dash] dash: parser: Fix old-style command substitution here-document crash
Commit-ID: 0274540a8baa08929dbdcf367c505a46d659b44c Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=0274540a8baa08929dbdcf367c505a46d659b44c Author: Herbert Xu <herbert at gondor.apana.org.au> AuthorDate: Fri, 29 Mar 2019 13:49:59 +0800 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Sat, 28 Mar 2020 21:42:55 +0000 [klibc] dash: parser: Fix
2014 Feb 08
1
Samba 3 to 4 AD migration - extensive permissions problems
Finally biting the bullet and upgrading home machines to Windows 7 but experiencing many problems. Server is a Debian Lenny, old Samba 3.2.5, new Samba 4.1.4 built from source. My setup has been doing roaming profiles for XP since 2003 or so with almost no changes. I want to keep roaming profiles going plus do some folder redirection (Desktop (my wife doesn't believe in file shares for
2007 Aug 06
0
Roam Prof + F Redir: Logon/off merge deletes most of profile
Sorry that post was located here: http://lists.samba.org/archive/samba/2004-October/094121.html -- Thanks, Matthew Crites
2011 Dec 29
1
redirect ports from user network
Hello. I would like to redirect some ports from user network to host system. In console i can do it: /usr/libexec/qemu-kvm -drive file=/home/libvirt/qemu-fedora.img -vnc 10.200.1.1:1 -net user -redir tcp:22000::49999 -redir tcp:22001::22 How can i do it with libvirt? I make users network in XML config VM: <interface type='user'> <mac
2010 Dec 22
0
Asterisk 1.8.1.1 Multiple Parking Lots
Asterisk Version: 1.8.1.1 Problem: Multiple Parking Lots Issue: Not redirecting to the right parking lot. Always uses the first parking lot from "parkedcalls show" or "features show" Asterisk Working Version: 1.6.1 Steps Taken: In features.conf added: [parkinglot_test] context => parkedcalls-test parkext => 700 parkpos => 701-710 parkingtime => 120 findslot