Date: Sat, 12 May 2001 11:09:10 -0700 From: Eric Melville <eric@FreeBSD.org> To: freebsd-audit@freebsd.org Subject: MFC for last window(1) patch Message-ID: <20010512110910.A51717@FreeBSD.org>
next in thread | raw e-mail | index | archive | help
I probably ought to MFC this to kill another mktemp(3) from the tree. It's the same thing that I committed a couple weeks back aside from the line numbers. Also, I frequently see "foo.h" instead of <foo.h> for including system wide headers in the older source. Is this something that should be changed, or does the fact that it works fine mean it should stay the same? Index: scanner.c =================================================================== RCS file: /home/ncvs/src/usr.bin/window/scanner.c,v retrieving revision 1.2 diff -r1.2 scanner.c 45a46 > #include "mystring.h" Index: wwterminfo.c =================================================================== RCS file: /home/ncvs/src/usr.bin/window/wwterminfo.c,v retrieving revision 1.3 diff -r1.3 wwterminfo.c 66,67c66 < mktemp(wwterminfopath); < if (mkdir(wwterminfopath, 0755) < 0 || --- > if (mkdtemp(wwterminfopath) < 0 || To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-audit" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010512110910.A51717>