diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-10-02 12:18:33 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-10-02 12:18:33 +0000 |
commit | fe1bd7a63ea88ff97b2d9c08f196c7fd75f3d784 (patch) | |
tree | f2c7eadc5b128a5c41015e98903e9d563750afc1 /x11/gdm/files/patch-as | |
parent | d7b04d31b99bcd0b81ba050c1a6faef978a5e2ff (diff) | |
download | ports-fe1bd7a63ea88ff97b2d9c08f196c7fd75f3d784.tar.gz ports-fe1bd7a63ea88ff97b2d9c08f196c7fd75f3d784.zip |
Update to 2.2.4.1.
PR: 30955
Submitted by: Stijn Hoop <stjin@win.tue.nl>
Notes
Notes:
svn path=/head/; revision=48344
Diffstat (limited to 'x11/gdm/files/patch-as')
-rw-r--r-- | x11/gdm/files/patch-as | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/x11/gdm/files/patch-as b/x11/gdm/files/patch-as new file mode 100644 index 000000000000..cf7db5183e5d --- /dev/null +++ b/x11/gdm/files/patch-as @@ -0,0 +1,14 @@ +--- gui/gdmflexiserver.c.orig Mon Oct 1 12:39:52 2001 ++++ gui/gdmflexiserver.c Mon Oct 1 12:40:08 2001 +@@ -59,7 +59,11 @@ + g_print ("Sending command: '%s'\n", command); + + cstr = g_strdup_printf ("%s\n", command); ++#ifndef __FreeBSD__ + if (send (fd, cstr, strlen (cstr), MSG_NOSIGNAL) < 0) ++#else ++ if (send (fd, cstr, strlen (cstr), 0) < 0) ++#endif + return NULL; + + if ( ! get_response) |