comparison lib-src/movemail.c @ 4985:623be452ebb8

(main): Fix error message text.
author Richard M. Stallman <rms@gnu.org>
date Fri, 12 Nov 1993 06:25:16 +0000
parents 1fc792473491
children 60fa1ee0c98c
comparison
equal deleted inserted replaced
4984:80fde3ca486e 4985:623be452ebb8
198 { 198 {
199 /* Create the lock file, but not under the lock file name. */ 199 /* Create the lock file, but not under the lock file name. */
200 /* Give up if cannot do that. */ 200 /* Give up if cannot do that. */
201 desc = open (tempname, O_WRONLY | O_CREAT, 0666); 201 desc = open (tempname, O_WRONLY | O_CREAT, 0666);
202 if (desc < 0) 202 if (desc < 0)
203 pfatal_with_name ("lock file--see source file etc/movemail.c"); 203 pfatal_with_name ("lock file--see source file lib-src/movemail.c");
204 close (desc); 204 close (desc);
205 205
206 tem = link (tempname, lockname); 206 tem = link (tempname, lockname);
207 unlink (tempname); 207 unlink (tempname);
208 if (tem >= 0) 208 if (tem >= 0)