[openssh-commits] [openssh] branch master updated: remove PRIVSEP macros for osx
git+noreply at mindrot.org
git+noreply at mindrot.org
Wed Jun 5 02:22:04 AEST 2024
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
The following commit(s) were added to refs/heads/master by this push:
new cc80d51d remove PRIVSEP macros for osx
cc80d51d is described below
commit cc80d51d034bcb24fd0f2564a4bdf1612000a2a2
Author: Damien Miller <djm at mindrot.org>
AuthorDate: Wed Jun 5 02:21:30 2024 +1000
remove PRIVSEP macros for osx
---
session.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/session.c b/session.c
index c998e038..7cf22a72 100644
--- a/session.c
+++ b/session.c
@@ -706,13 +706,13 @@ do_exec(struct ssh *ssh, Session *s, const char *command)
#ifdef SSH_AUDIT_EVENTS
if (command != NULL)
- PRIVSEP(audit_run_command(command));
+ mm_audit_run_command(command);
else if (s->ttyfd == -1) {
char *shell = s->pw->pw_shell;
if (shell[0] == '\0') /* empty shell means /bin/sh */
shell =_PATH_BSHELL;
- PRIVSEP(audit_run_command(shell));
+ mm_audit_run_command(shell);
}
#endif
if (s->ttyfd != -1)
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list