From 55e30d2abd53c8b5cec24a6b8ef79cb91f709b69 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 29 Jan 2000 23:52:29 +0000 Subject: [PATCH] (main): Improve error message if can't create lock file. --- lib-src/ChangeLog | 4 ++++ lib-src/movemail.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 42086351111..3dd2d830bff 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,7 @@ +2000-01-29 Richard M. Stallman + + * movemail.c (main): Improve error message if can't create lock file. + 2000-01-28 Eric Hanchrow * emacsclient.c (socket_status): New function. diff --git a/lib-src/movemail.c b/lib-src/movemail.c index ed13e9f6be8..45f5874ea72 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c @@ -328,7 +328,7 @@ main (argc, argv) if (desc < 0) { char *message = (char *) xmalloc (strlen (tempname) + 50); - sprintf (message, "%s--see source file lib-src/movemail.c", + sprintf (message, "can't create %s to become the lock file", tempname); pfatal_with_name (message); } -- 2.39.5