summaryrefslogtreecommitdiff
path: root/daemon
diff options
context:
space:
mode:
authorRay Strode <halfline@src.gnome.org>2008-02-09 03:58:39 +0000
committerRay Strode <halfline@src.gnome.org>2008-02-09 03:58:39 +0000
commit325f00a4b8bcf873dde56683d99d49bb2422cf5a (patch)
tree8875273443eae0212b0f145210265aac35df5d3e /daemon
parentf99b7475706df558f12d3f5ce137791c9b5d2c62 (diff)
downloadgdm-325f00a4b8bcf873dde56683d99d49bb2422cf5a.tar.gz
Revert some unwanted debugging spew that snuck into the last commit
svn path=/trunk/; revision=5744
Diffstat (limited to 'daemon')
-rw-r--r--daemon/gdm-session-auditor.c8
-rw-r--r--daemon/gdm-session-linux-auditor.c1
2 files changed, 0 insertions, 9 deletions
diff --git a/daemon/gdm-session-auditor.c b/daemon/gdm-session-auditor.c
index 0a57154b..f656511e 100644
--- a/daemon/gdm-session-auditor.c
+++ b/daemon/gdm-session-auditor.c
@@ -145,7 +145,6 @@ gdm_session_auditor_set_username (GdmSessionAuditor *auditor,
if ((username == NULL || auditor->priv->username == NULL) ||
strcmp (username, auditor->priv->username) != 0) {
- g_debug ("reporting to auditor username has been set to '%s'\n", username);
auditor->priv->username = g_strdup (username);
g_object_notify (G_OBJECT (auditor), "username");
}
@@ -258,7 +257,6 @@ gdm_session_auditor_new (const char *hostname,
void
gdm_session_auditor_report_password_changed (GdmSessionAuditor *auditor)
{
- g_debug ("report password changed %s\n", auditor->priv->username);
if (GDM_SESSION_AUDITOR_GET_CLASS (auditor)->report_password_changed != NULL) {
GDM_SESSION_AUDITOR_GET_CLASS (auditor)->report_password_changed (auditor);
}
@@ -267,7 +265,6 @@ gdm_session_auditor_report_password_changed (GdmSessionAuditor *auditor)
void
gdm_session_auditor_report_password_change_failure (GdmSessionAuditor *auditor)
{
- g_debug ("report password change failure %s\n", auditor->priv->username);
if (GDM_SESSION_AUDITOR_GET_CLASS (auditor)->report_password_change_failure != NULL) {
GDM_SESSION_AUDITOR_GET_CLASS (auditor)->report_password_change_failure (auditor);
}
@@ -276,7 +273,6 @@ gdm_session_auditor_report_password_change_failure (GdmSessionAuditor *auditor)
void
gdm_session_auditor_report_user_accredited (GdmSessionAuditor *auditor)
{
- g_debug ("report user accredited %s\n", auditor->priv->username);
if (GDM_SESSION_AUDITOR_GET_CLASS (auditor)->report_user_accredited != NULL) {
GDM_SESSION_AUDITOR_GET_CLASS (auditor)->report_user_accredited (auditor);
}
@@ -285,8 +281,6 @@ gdm_session_auditor_report_user_accredited (GdmSessionAuditor *auditor)
void
gdm_session_auditor_report_login (GdmSessionAuditor *auditor)
{
-
- g_debug ("report login %s\n", auditor->priv->username);
if (GDM_SESSION_AUDITOR_GET_CLASS (auditor)->report_login != NULL) {
GDM_SESSION_AUDITOR_GET_CLASS (auditor)->report_login (auditor);
}
@@ -297,7 +291,6 @@ gdm_session_auditor_report_login_failure (GdmSessionAuditor *auditor,
int error_code,
const char *error_message)
{
- g_debug ("report login failure %s\n", auditor->priv->username);
if (GDM_SESSION_AUDITOR_GET_CLASS (auditor)->report_login_failure != NULL) {
GDM_SESSION_AUDITOR_GET_CLASS (auditor)->report_login_failure (auditor, error_code, error_message);
}
@@ -306,7 +299,6 @@ gdm_session_auditor_report_login_failure (GdmSessionAuditor *auditor,
void
gdm_session_auditor_report_logout (GdmSessionAuditor *auditor)
{
- g_debug ("report logout %s\n", auditor->priv->username);
if (GDM_SESSION_AUDITOR_GET_CLASS (auditor)->report_logout != NULL) {
GDM_SESSION_AUDITOR_GET_CLASS (auditor)->report_logout (auditor);
}
diff --git a/daemon/gdm-session-linux-auditor.c b/daemon/gdm-session-linux-auditor.c
index e06aee66..0c0cf79a 100644
--- a/daemon/gdm-session-linux-auditor.c
+++ b/daemon/gdm-session-linux-auditor.c
@@ -64,7 +64,6 @@ gdm_session_linux_auditor_report_login_attempt (GdmSessionAuditor *auditor,
if (username != NULL) {
pw = getpwnam (username);
} else {
- G_BREAKPOINT ();
username = g_strdup ("unknown");
pw = NULL;
}