summaryrefslogtreecommitdiffstats
path: root/kdessh/kdessh.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:32:00 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:32:00 -0600
commit27f2cfdc57b75ea3994e31ad436464353d966cdd (patch)
tree0aab4fe14ca3ea9071b7a0d97529996e5bb35440 /kdessh/kdessh.cpp
parent73dc36225d414b2108708fac11960774f74a3a8a (diff)
downloadtdeutils-27f2cfdc57b75ea3994e31ad436464353d966cdd.tar.gz
tdeutils-27f2cfdc57b75ea3994e31ad436464353d966cdd.zip
Additional kde to tde renaming
Diffstat (limited to 'kdessh/kdessh.cpp')
-rw-r--r--kdessh/kdessh.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdessh/kdessh.cpp b/kdessh/kdessh.cpp
index 438aa33..a3d5003 100644
--- a/kdessh/kdessh.cpp
+++ b/kdessh/kdessh.cpp
@@ -2,7 +2,7 @@
*
* $Id$
*
- * This file is part of the KDE project, module kdesu.
+ * This file is part of the KDE project, module tdesu.
* Copyright (C) 2000 Geert Jansen <jansen@kde.org>
*/
@@ -27,9 +27,9 @@
#include <kcmdlineargs.h>
#include <kmessagebox.h>
-#include <kdesu/ssh.h>
-#include <kdesu/client.h>
-#include <kdesu/defaults.h>
+#include <tdesu/ssh.h>
+#include <tdesu/client.h>
+#include <tdesu/defaults.h>
#include "sshdlg.h"
@@ -38,7 +38,7 @@ static KCmdLineOptions options[] =
{ "+host", I18N_NOOP("Specifies the remote host"), 0 },
{ "+command", I18N_NOOP("The command to run"), 0 },
{ "u <user>", I18N_NOOP("Specifies the target uid"), 0 },
- { "s <path>", I18N_NOOP("Specify remote stub location"), "kdesu_stub" },
+ { "s <path>", I18N_NOOP("Specify remote stub location"), "tdesu_stub" },
{ "n", I18N_NOOP("Do not keep password"), 0 },
{ "q", I18N_NOOP("Stop the daemon (forgets all passwords)"), 0 },
{ "t", I18N_NOOP("Enable terminal output (no password keeping)"), 0 },
@@ -128,7 +128,7 @@ int main(int argc, char *argv[])
have_daemon = false;
}
- // Try to exec the command with kdesud?
+ // Try to exec the command with tdesud?
bool keep = !args->isSet("n") && have_daemon;
bool terminal = args->isSet("t");
if (keep && !terminal)