Cosmetics
This commit is contained in:
parent
f8e93ad60a
commit
8f4617d9bd
6 changed files with 7 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
||||||
include_directories("${bastion_SOURCE_DIR}/termrec/libtty/")
|
include_directories("${bastion_SOURCE_DIR}/termrec/libtty/")
|
||||||
include_directories("${bastion_SOURCE_DIR}/common")
|
include_directories("${bastion_SOURCE_DIR}/")
|
||||||
|
|
||||||
file(GLOB_RECURSE SOURCES *.c)
|
file(GLOB_RECURSE SOURCES *.c)
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,11 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
|
#include "common/mysql.h"
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
#ifdef SESSION_RECORDING
|
#ifdef SESSION_RECORDING
|
||||||
#include "recording.h"
|
#include "recording.h"
|
||||||
#endif
|
#endif
|
||||||
#include "mysql.h"
|
|
||||||
#include "state.h"
|
#include "state.h"
|
||||||
|
|
||||||
// callback function for channel data and exceptions
|
// callback function for channel data and exceptions
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
|
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
#include "mysql.h"
|
#include "common/mysql.h"
|
||||||
#include "session.h"
|
#include "session.h"
|
||||||
|
|
||||||
/* SIGCHLD handler for cleaning up dead children. */
|
/* SIGCHLD handler for cleaning up dead children. */
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "common/mysql.h"
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
#include "mysql.h"
|
|
||||||
#include "proxy.h"
|
#include "proxy.h"
|
||||||
#include "state.h"
|
#include "state.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
|
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
#include "mysql.h"
|
#include "common/mysql.h"
|
||||||
#include "proxy.h"
|
#include "proxy.h"
|
||||||
#include "session.h"
|
#include "session.h"
|
||||||
#include "state.h"
|
#include "state.h"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef MYSQL_H_
|
#ifndef COMMON_MYSQL_H_
|
||||||
#define MYSQL_H_
|
#define COMMON_MYSQL_H_
|
||||||
|
|
||||||
struct db_host_info {
|
struct db_host_info {
|
||||||
char * privkeytxt;
|
char * privkeytxt;
|
||||||
|
|
Reference in a new issue