[krb5-auth-dialog] Rename krb5-auth-dialog.[ch] to ka-dialog.[ch]
- From: Guido Günther <guidog src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [krb5-auth-dialog] Rename krb5-auth-dialog.[ch] to ka-dialog.[ch]
- Date: Thu, 29 Apr 2010 08:29:53 +0000 (UTC)
commit 8ddcf3681b8a9a06a50b570497d9d49562cf9cfb
Author: Guido Günther <agx sigxcpu org>
Date: Wed Apr 28 17:45:06 2010 +0200
Rename krb5-auth-dialog.[ch] to ka-dialog.[ch]
krb5-auth-dialog rename fix
autogen.sh | 2 +-
configure.ac | 2 +-
src/Makefile.am | 4 ++--
src/ka-dbus.c | 2 +-
src/{krb5-auth-dialog.c => ka-dialog.c} | 8 ++++----
src/{krb5-auth-dialog.h => ka-dialog.h} | 1 -
src/ka-pwdialog.c | 2 +-
src/ka-tickets.c | 2 +-
src/krb5-auth-applet.c | 2 +-
9 files changed, 12 insertions(+), 13 deletions(-)
---
diff --git a/autogen.sh b/autogen.sh
index 1008187..10ccd30 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -8,7 +8,7 @@ REQUIRED_INTLTOOL_VERSION=0.35.0
PKG_NAME=krb5-auth-dialog
(test -f $srcdir/configure.ac \
- && test -f $srcdir/src/krb5-auth-dialog.c) || {
+ && test -f $srcdir/src/ka-dialog.c) || {
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
echo " top-level $PKG_NAME directory"
exit 1
diff --git a/configure.ac b/configure.ac
index 79301a6..4ebb6a6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_INIT([krb5-auth-dialog], [0.15])
-AC_CONFIG_SRCDIR(src/krb5-auth-dialog.c)
+AC_CONFIG_SRCDIR(src/ka-dialog.c)
dnl Make automake keep quiet about wildcards & other GNUmake-isms
AM_INIT_AUTOMAKE([-Wno-portability])
AM_CONFIG_HEADER(config.h)
diff --git a/src/Makefile.am b/src/Makefile.am
index 5174bec..ae57ead 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -21,8 +21,8 @@ $(service_DATA): $(service_in_files) Makefile
sed -e "s|\ BINDIR\@|$(bindir)|" $< > $@
krb5_auth_dialog_SOURCES = \
- krb5-auth-dialog.c \
- krb5-auth-dialog.h \
+ ka-dialog.c \
+ ka-dialog.h \
krb5-auth-applet.c \
krb5-auth-applet.h \
ka-applet.h \
diff --git a/src/ka-dbus.c b/src/ka-dbus.c
index 38470a8..926530b 100644
--- a/src/ka-dbus.c
+++ b/src/ka-dbus.c
@@ -22,7 +22,7 @@
#include <dbus/dbus-glib.h>
#include "krb5-auth-applet.h"
-#include "krb5-auth-dialog.h"
+#include "ka-dialog.h"
#include "ka-dbus.h"
#include "ka-dbus-glue.h"
diff --git a/src/krb5-auth-dialog.c b/src/ka-dialog.c
similarity index 99%
rename from src/krb5-auth-dialog.c
rename to src/ka-dialog.c
index 393bfe2..f5a9634 100644
--- a/src/krb5-auth-dialog.c
+++ b/src/ka-dialog.c
@@ -36,7 +36,7 @@
#include "secmem-util.h"
#include "memory.h"
-#include "krb5-auth-dialog.h"
+#include "ka-dialog.h"
#include "krb5-auth-applet.h"
#include "ka-pwdialog.h"
#include "ka-dbus.h"
@@ -1119,10 +1119,10 @@ main (int argc, char *argv[])
const char *help_msg = "Run '" PACKAGE " --help' to see a full list of available command line options";
const GOptionEntry options [] = {
{"auto", 'a', 0, G_OPTION_ARG_NONE, &run_auto,
- "Only run if an initialized ccache is found (default)", NULL},
+ "Only run if an initialized ccache is found (default)", NULL},
{"always", 'A', 0, G_OPTION_ARG_NONE, &run_always,
- "Always run", NULL},
- { NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL }
+ "Always run", NULL},
+ { NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL }
};
context = g_option_context_new ("- Kerberos 5 credential checking");
diff --git a/src/krb5-auth-dialog.h b/src/ka-dialog.h
similarity index 99%
rename from src/krb5-auth-dialog.h
rename to src/ka-dialog.h
index 48cd0b0..2dc94fe 100644
--- a/src/krb5-auth-dialog.h
+++ b/src/ka-dialog.h
@@ -30,4 +30,3 @@ gboolean ka_get_service_tickets(GtkListStore *tickets);
char* ka_unparse_name(void);
int ka_tgt_valid_seconds(void);
#endif
-
diff --git a/src/ka-pwdialog.c b/src/ka-pwdialog.c
index 109a561..7f94fbc 100644
--- a/src/ka-pwdialog.c
+++ b/src/ka-pwdialog.c
@@ -23,7 +23,7 @@
#include <glib/gi18n.h>
#include "krb5-auth-applet.h"
-#include "krb5-auth-dialog.h"
+#include "ka-dialog.h"
#include "ka-pwdialog.h"
struct _KaPwDialog {
diff --git a/src/ka-tickets.c b/src/ka-tickets.c
index 909fe0f..8734546 100644
--- a/src/ka-tickets.c
+++ b/src/ka-tickets.c
@@ -24,7 +24,7 @@
#include <gtk/gtk.h>
#include "ka-tickets.h"
-#include "krb5-auth-dialog.h"
+#include "ka-dialog.h"
static GtkListStore *tickets;
static GtkWidget *tickets_dialog;
diff --git a/src/krb5-auth-applet.c b/src/krb5-auth-applet.c
index 254671e..45e6d23 100644
--- a/src/krb5-auth-applet.c
+++ b/src/krb5-auth-applet.c
@@ -23,7 +23,7 @@
#include <glib/gi18n.h>
#include "krb5-auth-applet.h"
-#include "krb5-auth-dialog.h"
+#include "ka-dialog.h"
#include "ka-gconf-tools.h"
#include "ka-gconf.h"
#include "ka-tools.h"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]