forked from macports/macports-ports
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3285fda
commit e2a5bf8
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
gnome/gdm/files/patch-daemon-gdm-xdmcp-display-factory.c.diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- daemon/gdm-xdmcp-display-factory.c 2015-09-19 03:33:26.000000000 +0800 | ||
+++ daemon/gdm-xdmcp-display-factory.c 2024-08-27 19:04:22.000000000 +0800 | ||
@@ -374,9 +374,11 @@ | ||
if (ai->ai_flags & AI_NUMERICHOST) { | ||
g_string_append (str, "numhost "); | ||
} | ||
+#ifdef AI_NUMERICSERV | ||
if (ai->ai_flags & AI_NUMERICSERV) { | ||
g_string_append (str, "numserv "); | ||
} | ||
+#endif | ||
#ifdef AI_V4MAPPEP | ||
if (ai->ai_flags & AI_V4MAPPED) { | ||
g_string_append (str, "v4mapped "); |