-rw-r--r-- | core/opie-login/passworddialogimpl.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/core/opie-login/passworddialogimpl.cpp b/core/opie-login/passworddialogimpl.cpp index 852708e..d9132e2 100644 --- a/core/opie-login/passworddialogimpl.cpp +++ b/core/opie-login/passworddialogimpl.cpp | |||
@@ -12,48 +12,53 @@ | |||
12 | .i_,=:_. -<s. This file is distributed in the hope that | 12 | .i_,=:_. -<s. This file is distributed in the hope that |
13 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 13 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
14 | : .. .:, . . . without even the implied warranty of | 14 | : .. .:, . . . without even the implied warranty of |
15 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 15 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
16 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU General | 16 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU General |
17 | ..}^=.= = ; Public License for more details. | 17 | ..}^=.= = ; Public License for more details. |
18 | ++= -. .` .: | 18 | ++= -. .` .: |
19 | : = ...= . :.=- You should have received a copy of the GNU | 19 | : = ...= . :.=- You should have received a copy of the GNU |
20 | -. .:....=;==+<; General Public License along with this file; | 20 | -. .:....=;==+<; General Public License along with this file; |
21 | -_. . . )=. = see the file COPYING. If not, write to the | 21 | -_. . . )=. = see the file COPYING. If not, write to the |
22 | -- :-=` Free Software Foundation, Inc., | 22 | -- :-=` Free Software Foundation, Inc., |
23 | 59 Temple Place - Suite 330, | 23 | 59 Temple Place - Suite 330, |
24 | Boston, MA 02111-1307, USA. | 24 | Boston, MA 02111-1307, USA. |
25 | 25 | ||
26 | */ | 26 | */ |
27 | 27 | ||
28 | |||
29 | #include <qlayout.h> | 28 | #include <qlayout.h> |
30 | #include <qlabel.h> | 29 | #include <qlabel.h> |
31 | #include <qlineedit.h> | 30 | #include <qlineedit.h> |
32 | #include <qvalidator.h> | 31 | #include <qvalidator.h> |
33 | #include <qmessagebox.h> | 32 | #include <qmessagebox.h> |
34 | #include <qhbox.h> | 33 | #include <qhbox.h> |
35 | #include <qtoolbutton.h> | 34 | #include <qtoolbutton.h> |
36 | 35 | ||
36 | |||
37 | |||
37 | #include <sys/types.h> | 38 | #include <sys/types.h> |
38 | #include <pwd.h> | 39 | #include <pwd.h> |
39 | #include <shadow.h> | 40 | #include <shadow.h> |
40 | #include <stdio.h> | 41 | #include <stdio.h> |
41 | #include <time.h> | 42 | #include <time.h> |
42 | #include <unistd.h> | 43 | #include <unistd.h> |
43 | 44 | ||
45 | // Shitty gcc2 toolchain | ||
46 | extern "C" char* crypt( const char*, const char* ); | ||
47 | |||
48 | |||
44 | 49 | ||
45 | #include "passworddialogimpl.h" | 50 | #include "passworddialogimpl.h" |
46 | 51 | ||
47 | 52 | ||
48 | // This function is taken from 'busybox'. | 53 | // This function is taken from 'busybox'. |
49 | static int i64c(int i) { | 54 | static int i64c(int i) { |
50 | if (i <= 0) | 55 | if (i <= 0) |
51 | return ('.'); | 56 | return ('.'); |
52 | if (i == 1) | 57 | if (i == 1) |
53 | return ('/'); | 58 | return ('/'); |
54 | if (i >= 2 && i < 12) | 59 | if (i >= 2 && i < 12) |
55 | return ('0' - 2 + i); | 60 | return ('0' - 2 + i); |
56 | if (i >= 12 && i < 38) | 61 | if (i >= 12 && i < 38) |
57 | return ('A' - 12 + i); | 62 | return ('A' - 12 + i); |
58 | if (i >= 38 && i < 63) | 63 | if (i >= 38 && i < 63) |
59 | return ('a' - 38 + i); | 64 | return ('a' - 38 + i); |