s/nfs/fmtstr/
[mmh] / uip / dist.c
index 4e83a7b..869a906 100644 (file)
@@ -45,7 +45,7 @@ main(int argc, char **argv)
        char *form = NULL, *msg = NULL, buf[BUFSIZ], drft[BUFSIZ];
        char **argp, **arguments;
        struct msgs *mp = NULL;
-       char *nfs;
+       char *fmtstr;
 
 #ifdef LOCALE
        setlocale(LC_ALL, "");
@@ -139,8 +139,8 @@ main(int argc, char **argv)
        if ((out = creat(drft, m_gmprot())) == NOTOK)
                adios(drft, "unable to create");
 
-       nfs = new_fs(form, distcomps);
-       if (write(out, nfs, strlen(nfs)) != strlen(nfs)) {
+       fmtstr = new_fs(form, distcomps);
+       if (write(out, fmtstr, strlen(fmtstr)) != strlen(fmtstr)) {
                adios(drft, "error writing");
        }
        close(out);