diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 2000-08-03 23:13:35 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 2000-08-03 23:13:35 +0000 |
| commit | b088fe8c8ff84b5c791e214334a27579d0627595 (patch) | |
| tree | c53098a3b2fe87570249dca0a3371477454efe45 | |
| parent | 116c1d9d816e64ce1c101ce8bc750344560802a5 (diff) | |
Notes
| -rw-r--r-- | usr.sbin/ctm/ctm/ctm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ctm/ctm/ctm.c b/usr.sbin/ctm/ctm/ctm.c index eb7d5f42456a..5f16249f70be 100644 --- a/usr.sbin/ctm/ctm/ctm.c +++ b/usr.sbin/ctm/ctm/ctm.c @@ -238,7 +238,7 @@ Proc(char *filename, unsigned applied) return Exit_Broke; } if ((fd = mkstemp(fn)) == -1 || (f2 = fdopen(fd, "w+")) == NULL) { - perror(fn); + warn("%s", fn); free(fn); if (fd != -1) close(fd); |
