gdm r5744 - trunk/daemon



Author: halfline
Date: Sat Feb  9 03:58:39 2008
New Revision: 5744
URL: http://svn.gnome.org/viewvc/gdm?rev=5744&view=rev

Log:
Revert some unwanted debugging spew that snuck into the last commit


Modified:
   trunk/daemon/gdm-session-auditor.c
   trunk/daemon/gdm-session-linux-auditor.c

Modified: trunk/daemon/gdm-session-auditor.c
==============================================================================
--- trunk/daemon/gdm-session-auditor.c	(original)
+++ trunk/daemon/gdm-session-auditor.c	Sat Feb  9 03:58:39 2008
@@ -145,7 +145,6 @@
 
         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 @@
 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 @@
 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 @@
 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 @@
 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 @@
                                           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 @@
 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);
         }

Modified: trunk/daemon/gdm-session-linux-auditor.c
==============================================================================
--- trunk/daemon/gdm-session-linux-auditor.c	(original)
+++ trunk/daemon/gdm-session-linux-auditor.c	Sat Feb  9 03:58:39 2008
@@ -64,7 +64,6 @@
         if (username != NULL) {
                 pw = getpwnam (username);
         } else {
-                G_BREAKPOINT ();
                 username = g_strdup ("unknown");
                 pw = NULL;
         }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]