summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2010-01-13 12:32:23 -0500
committerRay Strode <rstrode@redhat.com>2010-01-13 12:32:23 -0500
commita824ee3a2e3d7d3e72dd8ddfafb33c96e2b08622 (patch)
tree5e8a650d57e275993694aa45a9fc36d36796aa79 /common
parent2ca6e0ec36536968a623bf3f855afab2ee47c5cf (diff)
downloadgdm-a824ee3a2e3d7d3e72dd8ddfafb33c96e2b08622.tar.gz
Remove spurious null check in print statement
Diffstat (limited to 'common')
-rw-r--r--common/gdm-address.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/gdm-address.c b/common/gdm-address.c
index ce87d98b..390ef871 100644
--- a/common/gdm-address.c
+++ b/common/gdm-address.c
@@ -437,7 +437,7 @@ add_local_addrinfo (GList **list)
hints.ai_family = AF_UNSPEC;
hints.ai_flags = AI_CANONNAME;
- g_debug ("GdmAddress: looking up hostname: %s", hostbuf ? hostbuf : "(null)");
+ g_debug ("GdmAddress: looking up hostname: %s", hostbuf);
result = NULL;
if (getaddrinfo (hostbuf, NULL, &hints, &result) != 0) {
g_debug ("%s: Could not get address from hostname!", "gdm_peek_local_address_list");