aboutsummaryrefslogtreecommitdiff
path: root/editors/emacs19/files/patch-ba
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-07-21 18:15:36 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-07-21 18:15:36 +0000
commit70f89778c0f2f76bc2f8046e99cc55f2962ac9c2 (patch)
tree14c35099cfb4f4257c5e0b8e589d530fcb829468 /editors/emacs19/files/patch-ba
parentf667b39b3c0614d5aeb9bcb4bac4a4b222408185 (diff)
downloadports-release/4.1.0.tar.gz
ports-release/4.1.0.zip
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_1_0'.release/4.1.0
Diffstat (limited to 'editors/emacs19/files/patch-ba')
-rw-r--r--editors/emacs19/files/patch-ba22
1 files changed, 0 insertions, 22 deletions
diff --git a/editors/emacs19/files/patch-ba b/editors/emacs19/files/patch-ba
deleted file mode 100644
index c9f637aa3ba4..000000000000
--- a/editors/emacs19/files/patch-ba
+++ /dev/null
@@ -1,22 +0,0 @@
---- lib-src/emacsclient.c.old Tue Jul 23 23:18:33 1996
-+++ lib-src/emacsclient.c Thu Oct 8 22:34:54 1998
-@@ -94,6 +94,8 @@
- struct stat statbfr;
-
- gethostname (system_name, sizeof (system_name));
-+ system_name[sizeof (system_name) - 1] = '\0';
-+ /* system_name must be null-terminated string */
- sprintf (server.sun_path, "/tmp/esrv%d-%s", geteuid (), system_name);
-
- if (stat (server.sun_path, &statbfr) == -1)
---- lib-src/emacsserver.c.old Wed Jul 17 07:09:29 1996
-+++ lib-src/emacsserver.c Thu Oct 8 22:35:08 1998
-@@ -115,6 +115,8 @@
- server.sun_family = AF_UNIX;
- #ifndef SERVER_HOME_DIR
- gethostname (system_name, sizeof (system_name));
-+ system_name[sizeof (system_name) - 1] = '\0';
-+ /* system_name must be null-terminated string */
- sprintf (server.sun_path, "/tmp/esrv%d-%s", geteuid (), system_name);
-
- if (unlink (server.sun_path) == -1 && errno != ENOENT)