Mercurial > emacs
changeset 24083:33b162fe4507
(main): Eliminate arbitrary limit on
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 16 Jan 1999 21:44:56 +0000 |
parents | 676a4123361b |
children | c0b0893dd5a6 |
files | lib-src/emacsserver.c |
diffstat | 1 files changed, 18 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/emacsserver.c Sat Jan 16 18:27:16 1999 +0000 +++ b/lib-src/emacsserver.c Sat Jan 16 21:44:56 1999 +0000 @@ -213,7 +213,8 @@ int argc; char **argv; { - char system_name[32]; + char *system_name; + int system_name_length; int s, infd; #ifdef SOCKLEN_TYPE SOCKLEN_TYPE fromlen; @@ -250,9 +251,22 @@ } server.sun_family = AF_UNIX; #ifndef SERVER_HOME_DIR - gethostname (system_name, sizeof (system_name)); - /* system_name must be null-terminated string */ - system_name[sizeof (system_name) - 1] = '\0'; + system_name_length = 32; + + while (1) + { + system_name = (char *) xmalloc (system_name_length + 1); + + /* system_name must be null-terminated string. */ + system_name[system_name_length] = '\0'; + + if (gethostname (system_name, system_name_length) == 0) + break; + + free (system_name); + system_name_length *= 2; + } + sprintf (server.sun_path, "/tmp/esrv%d-%s", geteuid (), system_name); if (unlink (server.sun_path) == -1 && errno != ENOENT)