git.fiddlerwoaroof.com
Browse code

additional argument cases

Greg Wiley authored on 18/04/2017 18:27:29
Showing 2 changed files
... ...
@@ -1,7 +1,7 @@
1 1
 CXXFLAGS += -fPIC -fno-stack-protector
2 2
 CFLAGS += -fPIC -fno-stack-protector
3 3
 
4
-OBJS = dual_control.o
4
+OBJS = dual_control.o argument.o
5 5
 
6 6
 MODULELIB = pam_dual_control.so
7 7
 
... ...
@@ -4,8 +4,7 @@
4 4
 #include <vector>
5 5
 
6 6
 #include "argument.h"
7
-
8
-std::vector<const std::string> convert_arguments(int argc, const char **argv);
7
+#include "dual_control.h"
9 8
 
10 9
 extern dual_control dc;
11 10