summaryrefslogtreecommitdiffstats
path: root/sesman
diff options
context:
space:
mode:
authorjsorg71 <jay.sorg@gmail.com>2017-01-05 16:01:52 -0800
committerGitHub <noreply@github.com>2017-01-05 16:01:52 -0800
commit15a24ff1c4e35fdc6e9c8df0645ade44cddbafc5 (patch)
tree327e14eadc600cb20edaa6b44abcd4b6907b6621 /sesman
parent5194311d9d9be3698e1afe9e70e479e501c5b830 (diff)
parent7ba3610787ed6ba1a69bcacfc3058ef626f7a3c8 (diff)
downloadxrdp-proprietary-15a24ff1c4e35fdc6e9c8df0645ade44cddbafc5.tar.gz
xrdp-proprietary-15a24ff1c4e35fdc6e9c8df0645ade44cddbafc5.zip
Merge pull request #612 from proski/includes
Use <> for system includes, move system includes above local ones
Diffstat (limited to 'sesman')
-rw-r--r--sesman/env.c3
-rw-r--r--sesman/sig.c4
2 files changed, 4 insertions, 3 deletions
diff --git a/sesman/env.c b/sesman/env.c
index d8eb3106..adbfc788 100644
--- a/sesman/env.c
+++ b/sesman/env.c
@@ -24,9 +24,10 @@
*
*/
+#include <grp.h>
+
#include "list.h"
#include "sesman.h"
-#include "grp.h"
#include "ssl_calls.h"
extern unsigned char g_fixedkey[8]; /* in sesman.c */
diff --git a/sesman/sig.c b/sesman/sig.c
index aeb3aa90..10fb3ff1 100644
--- a/sesman/sig.c
+++ b/sesman/sig.c
@@ -24,9 +24,9 @@
*
*/
-#include "sesman.h"
+#include <signal.h>
-#include "signal.h"
+#include "sesman.h"
extern int g_sck;
extern int g_pid;