diff options
| author | Michael Albinus | 2024-07-16 10:11:45 +0200 |
|---|---|---|
| committer | Michael Albinus | 2024-07-16 10:11:45 +0200 |
| commit | fd8bdedde9655f04c03eb04af09f73ee77600f53 (patch) | |
| tree | fb969d4f31ea1fbc598c718ef52617c747ad330d /src/process.c | |
| parent | 7d8ff5a56c52ed8917d9f45f2b113cfd3de7d497 (diff) | |
| parent | 970409916e0dff9cd4d542f16f7d570149bdeeb1 (diff) | |
| download | emacs-fd8bdedde9655f04c03eb04af09f73ee77600f53.tar.gz emacs-fd8bdedde9655f04c03eb04af09f73ee77600f53.zip | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index 0167ceff7e0..93178eb241f 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -4471,7 +4471,7 @@ network_interface_info (Lisp_Object ifname) | |||
| 4471 | CHECK_STRING (ifname); | 4471 | CHECK_STRING (ifname); |
| 4472 | 4472 | ||
| 4473 | if (sizeof rq.ifr_name <= SBYTES (ifname)) | 4473 | if (sizeof rq.ifr_name <= SBYTES (ifname)) |
| 4474 | error ("interface name too long"); | 4474 | error ("Interface name too long"); |
| 4475 | lispstpcpy (rq.ifr_name, ifname); | 4475 | lispstpcpy (rq.ifr_name, ifname); |
| 4476 | 4476 | ||
| 4477 | s = socket (AF_INET, SOCK_STREAM | SOCK_CLOEXEC, 0); | 4477 | s = socket (AF_INET, SOCK_STREAM | SOCK_CLOEXEC, 0); |
| @@ -6853,7 +6853,7 @@ send_process (Lisp_Object proc, const char *buf, ptrdiff_t len, | |||
| 6853 | pset_status (p, list2 (Qexit, make_fixnum (256))); | 6853 | pset_status (p, list2 (Qexit, make_fixnum (256))); |
| 6854 | p->tick = ++process_tick; | 6854 | p->tick = ++process_tick; |
| 6855 | deactivate_process (proc); | 6855 | deactivate_process (proc); |
| 6856 | error ("process %s no longer connected to pipe; closed it", | 6856 | error ("Process %s no longer connected to pipe; closed it", |
| 6857 | SDATA (p->name)); | 6857 | SDATA (p->name)); |
| 6858 | } | 6858 | } |
| 6859 | else | 6859 | else |