Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 93122
Collapse All | Expand All

(-)pam_ssh_agent-0.2/main.c (-1 / +2 lines)
Lines 4-9 Link Here
4
#include <unistd.h>
4
#include <unistd.h>
5
#include <sys/types.h>
5
#include <sys/types.h>
6
#include <sys/wait.h>
6
#include <sys/wait.h>
7
#include <stdlib.h>
7
#include "popen2.h"
8
#include "popen2.h"
8
9
9
#define DEFAULT_USER "nobody"
10
#define DEFAULT_USER "nobody"
Lines 11-17 Link Here
11
#define MODULE_NAME "ssh_pam_agent"
12
#define MODULE_NAME "ssh_pam_agent"
12
13
13
#include <security/pam_modules.h>
14
#include <security/pam_modules.h>
14
#include <security/_pam_macros.h>
15
#include <security/pam_appl.h>
15
16
16
#define CMD_LEN 512
17
#define CMD_LEN 512
17
18
(-)pam_ssh_agent-0.2/popen2.c (-1 / +2 lines)
Lines 1-9 Link Here
1
#include "popen2.h"
1
#include "popen2.h"
2
#include <unistd.h>
2
#include <unistd.h>
3
#include <stdlib.h>
3
4
4
#include <sys/types.h>
5
#include <sys/types.h>
5
#include <sys/socket.h>
6
#include <sys/socket.h>
6
#include <wait.h>
7
#include <sys/wait.h>
7
8
8
int popen2(const char* cmd, FILE **in, FILE **out, pid_t *child) {
9
int popen2(const char* cmd, FILE **in, FILE **out, pid_t *child) {
9
  int in_socks[2];
10
  int in_socks[2];

Return to bug 93122