Browse code

fix typo in comments

Dario Rodriguez authored on 23/07/2014 16:48:27
Showing 1 changed files
... ...
@@ -6,7 +6,7 @@
6 6
  * Header file
7 7
  *
8 8
  * Author: Dario Rodriguez dario@softhome.net
9
- * This progran is licensed under the terms of the Affero GPL v1+
9
+ * This program is licensed under the terms of the Affero GPL v1+
10 10
  */
11 11
 
12 12
 #include "kakumei.h"
Browse code

put passwd handling in separate source file

Dario Rodriguez authored on 25/06/2014 17:09:44
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,16 @@
1
+/*
2
+ * kakumei_pass.h
3
+ *
4
+ * Password handling for kakumei.
5
+ *
6
+ * Header file
7
+ *
8
+ * Author: Dario Rodriguez dario@softhome.net
9
+ * This progran is licensed under the terms of the Affero GPL v1+
10
+ */
11
+
12
+#include "kakumei.h"
13
+
14
+int pass_new(kakumei *ka, char *user, char *passwd);
15
+int pass_check(kakumei *ka, char *user, char *passwd);
16
+