summaryrefslogtreecommitdiffstats
path: root/kdepasswd/kdepasswd.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-07-22 01:21:51 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-22 01:23:57 +0200
commit763b290f0123855a1d9e8fde0583297e0ce5941b (patch)
tree9f7530fc18be8ce9efd93117567146b0dccdc063 /kdepasswd/kdepasswd.cpp
parent08390bda6cc11917a625253a98e48da9b0aac8e6 (diff)
downloadtdebase-763b290f0123855a1d9e8fde0583297e0ce5941b.tar.gz
tdebase-763b290f0123855a1d9e8fde0583297e0ce5941b.zip
Rename kdepasswd -> tdepasswd
Diffstat (limited to 'kdepasswd/kdepasswd.cpp')
-rw-r--r--kdepasswd/kdepasswd.cpp79
1 files changed, 0 insertions, 79 deletions
diff --git a/kdepasswd/kdepasswd.cpp b/kdepasswd/kdepasswd.cpp
deleted file mode 100644
index 6f1c38aa3..000000000
--- a/kdepasswd/kdepasswd.cpp
+++ /dev/null
@@ -1,79 +0,0 @@
-/* vi: ts=8 sts=4 sw=4
- *
- * $Id$
- *
- * This file is part of the KDE project, module tdesu.
- * Copyright (C) 2000 Geert Jansen <jansen@kde.org>
- */
-
-#include <config.h>
-
-#include <kuniqueapplication.h>
-#include <tdelocale.h>
-#include <tdeaboutdata.h>
-#include <tdecmdlineargs.h>
-#include <tdemessagebox.h>
-#include <kuser.h>
-#include <kdebug.h>
-
-#include "passwd.h"
-#include "passwddlg.h"
-
-static TDECmdLineOptions options[] =
-{
- { "+[user]", I18N_NOOP("Change password of this user"), 0 },
- TDECmdLineLastOption
-};
-
-
-int main(int argc, char **argv)
-{
- TDEAboutData aboutData("kdepasswd", I18N_NOOP("TDE passwd"),
- VERSION, I18N_NOOP("Changes a UNIX password."),
- TDEAboutData::License_Artistic, "Copyright (c) 2000 Geert Jansen");
- aboutData.addAuthor("Geert Jansen", I18N_NOOP("Maintainer"),
- "jansen@kde.org", "http://www.stack.nl/~geertj/");
-
- TDECmdLineArgs::init(argc, argv, &aboutData);
- TDECmdLineArgs::addCmdLineOptions(options);
- KUniqueApplication::addCmdLineOptions();
-
-
- if (!KUniqueApplication::start()) {
- kdDebug() << "kdepasswd is already running" << endl;
- return 0;
- }
-
- KUniqueApplication app;
-
- KUser ku;
- TQCString user;
- bool bRoot = ku.isSuperUser();
- TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
-
- if (args->count())
- user = args->arg(0);
-
- /* You must be able to run "kdepasswd loginName" */
- if ( !user.isEmpty() && user!=KUser().loginName().utf8() && !bRoot)
- {
- KMessageBox::sorry(0, i18n("You need to be root to change the password of other users."));
- return 0;
- }
-
- TQCString oldpass;
- if (!bRoot)
- {
- int result = KDEpasswd1Dialog::getPassword(oldpass);
- if (result != KDEpasswd1Dialog::Accepted)
- return 0;
- }
-
- KDEpasswd2Dialog *dlg = new KDEpasswd2Dialog(oldpass, user);
-
-
- dlg->exec();
-
- return 0;
-}
-