Displaying 4 results from an estimated 4 matches for "shell0".
Did you mean:
shell
2011 Jun 04
0
[LLVMdev] Fwd: Re: How to identify LLVM version? [updated patch]
...at dcs-maillist.cs.uiuc.edu>; Fri, 3
Jun 2011 14:04:49 -0500
Received: from relay02.cites.uiuc.edu (relay02.cites.uiuc.edu
[128.174.196.4]) by dcs-mxgw.cs.uiuc.edu (8.13.1/8.13.1) with ESMTP id
p53J4m7r021034 for <llvmdev at cs.uiuc.edu>; Fri, 3 Jun 2011 14:04:48 -0500
Received: from shell0.rawbw.com (shell0.rawbw.com [198.144.192.45]) by
relay02.cites.uiuc.edu (8.14.4/8.14.2) with ESMTP id p53J4fMD001323 for
<llvmdev at cs.uiuc.edu>; Fri, 3 Jun 2011 14:04:48 -0500 (CDT)
Received: from eagle.yuri.org (stunnel at localhost [127.0.0.1])
(authenticated bits=0) by shell0.rawbw.c...
2002 Nov 05
2
[PATCH] Add a chroot_users option to sshd
.../* option to use filesystem snapshot */
+ /* #define DO_SNAPSHOTS */
+ #ifdef DO_SNAPSHOTS
+ /* snapshot name */
+ char *snapshot = NULL;
+ #endif
+
/* data */
#define MAX_SESSIONS 10
Session sessions[MAX_SESSIONS];
***************
*** 1255,1260 ****
--- 1262,1268 ----
const char *shell, *shell0, *hostname = NULL;
struct passwd *pw = s->pw;
u_int i;
+ char *idx = NULL;
/* remove hostkey from the child's memory */
destroy_sensitive_data();
***************
*** 1274,1279 ****
--- 1282,1330 ----
do_motd();
#else /* HAVE_OSF_SIA */
do_nologin(pw);
+ #ifdef DO_S...
2004 Sep 12
0
stdout flush
....
E-mail: krichy at tvnetwork.hu
PGP: 0x24E79141
Fingerprint = 6847 ECFF EF58 0C09 18A5 16CF 270F 0C6F 24E7 9141
-------------- next part --------------
--- openssh-3.9p1/session.c.orig Wed Sep 1 16:36:39 2004
+++ openssh-3.9p1/session.c Wed Sep 1 16:50:16 2004
@@ -1521,6 +1521,11 @@
else
shell0 = shell;
+ /* flush all output streams to get
+ * everything written on the terminal
+ * like motd, and etc */
+ fflush(NULL);
+
/*
* If we have no command, execute the shell. In this case, the shell
* name to be passed in argv[0] is preceded by '-' to indicate that
2020 May 26
4
sshd/winbind wrong GID redux
Hi, I'm in the position of having to support a fix for a bad
interaction between sshd and winbind/Active Directory. It's solved by a
small patch against openssh, but it would be nice to have the solution
generally available.
The problem has previously been described on this list by Andreas
Schneider, see:
https://lists.mindrot.org/pipermail/openssh-unix-dev/2019-February/037556.html