From: op Date: Thu, 30 Mar 2023 22:56:47 +0000 (+0000) Subject: drop unnecessary copy of fname; ok tb@ X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=8512481b7ba2689edf8c8aebbdb2713e9b6a150c;p=openbsd drop unnecessary copy of fname; ok tb@ --- diff --git a/usr.bin/mg/extend.c b/usr.bin/mg/extend.c index 5b88dfd61ef..e5ab9aea9a3 100644 --- a/usr.bin/mg/extend.c +++ b/usr.bin/mg/extend.c @@ -1,4 +1,4 @@ -/* $OpenBSD: extend.c,v 1.78 2023/03/30 19:00:02 op Exp $ */ +/* $OpenBSD: extend.c,v 1.79 2023/03/30 22:56:47 op Exp $ */ /* This file is in the public domain. */ /* @@ -649,10 +649,8 @@ load(FILE *ffp, const char *fname) { int s = TRUE, line; int nbytes = 0; - char excbuf[BUFSIZE], fncpy[NFILEN]; + char excbuf[BUFSIZE]; - /* keep a note of fname in case of errors in loaded file. */ - (void)strlcpy(fncpy, fname, sizeof(fncpy)); line = 0; while ((s = ffgetline(ffp, excbuf, sizeof(excbuf) - 1, &nbytes)) == FIOSUC) { @@ -661,7 +659,7 @@ load(FILE *ffp, const char *fname) if (excline(excbuf, nbytes, line) != TRUE) { s = FIOERR; dobeep(); - ewprintf("Error loading file %s at line %d", fncpy, line); + ewprintf("Error loading file %s at line %d", fname, line); break; } }