aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-checkpass
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-11-16 16:15:29 -0500
committerKen Moore <ken@ixsystems.com>2017-11-16 16:15:29 -0500
commit60559aa7165835d15e87480b3db6774f77f7a081 (patch)
tree70066c861e2b79295b0af523d480f517c279cd23 /src-qt5/core/lumina-checkpass
parentGet the Iteration over objects working for Lumina 2 (wallpapers). (diff)
downloadlumina-60559aa7165835d15e87480b3db6774f77f7a081.tar.gz
lumina-60559aa7165835d15e87480b3db6774f77f7a081.tar.bz2
lumina-60559aa7165835d15e87480b3db6774f77f7a081.zip
Get more of the new QML interface working for Lumina 2.
* simple context menu is now functional (lock/logout) * Screensaver is now working again (default setting was wrong) * Unlock functionality is working again (using the more secure temporary file method)
Diffstat (limited to 'src-qt5/core/lumina-checkpass')
-rw-r--r--src-qt5/core/lumina-checkpass/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-checkpass/main.c b/src-qt5/core/lumina-checkpass/main.c
index 2f54c8e6..70caf396 100644
--- a/src-qt5/core/lumina-checkpass/main.c
+++ b/src-qt5/core/lumina-checkpass/main.c
@@ -64,6 +64,8 @@ int main(int argc, char** argv){
fclose(fp);
}
if(pass == 0){ puts("Could not read password!!"); return 1; } //error in reading password
+ //puts("Read Password:");
+ //puts(pass);
//Validate current user (make sure current UID matches the logged-in user,
char* cUser = getlogin();
struct passwd *pwd = 0;
bgstack15