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

(-)localshell-1.2.old/src/common.cxx (+1 lines)
Lines 5-10 Link Here
5
#include "structures.hh"
5
#include "structures.hh"
6
#include "common.hh"
6
#include "common.hh"
7
#include <fstream>
7
#include <fstream>
8
#include <cstring>
8
using namespace std;
9
using namespace std;
9
10
10
bool match_user(uid_t uid, gid_t gid) {
11
bool match_user(uid_t uid, gid_t gid) {
(-)localshell-1.2.old/src/config.cxx (+2 lines)
Lines 10-15 Link Here
10
#include <fstream>
10
#include <fstream>
11
#include <map>
11
#include <map>
12
#include <vector>
12
#include <vector>
13
#include <cstring>
14
#include <cstdlib>
13
using namespace std;
15
using namespace std;
14
16
15
int load_config( const char *cfg_filename, configuration &conf) {
17
int load_config( const char *cfg_filename, configuration &conf) {
(-)localshell-1.2.old/src/config.hh (+1 lines)
Lines 2-7 Link Here
2
#ifndef _CONFIG_HH_
2
#ifndef _CONFIG_HH_
3
#define _CONFIG_HH_
3
#define _CONFIG_HH_
4
#include "structures.hh"
4
#include "structures.hh"
5
#include <fstream>
5
6
6
int load_config( const char *cfg_filename, configuration &conf);
7
int load_config( const char *cfg_filename, configuration &conf);
7
int parse_config(fstream &fs, configuration &conf);
8
int parse_config(fstream &fs, configuration &conf);
(-)localshell-1.2.old/src/localshell.cxx (+1 lines)
Lines 10-15 Link Here
10
10
11
#include <map>
11
#include <map>
12
#include <vector>
12
#include <vector>
13
#include <cstring>
13
using namespace std;
14
using namespace std;
14
15
15
int main(int argc, char** argv) {
16
int main(int argc, char** argv) {

Return to bug 250713