Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: None <source@NetBSD.ORG>
List: source-changes
Date: 09/21/1997 02:40:02
enami
Sat Sep 20 19:35:45 PDT 1997
Update of /cvsroot/src/sbin/mount_portal
In directory netbsd1:/var/slash-tmp/cvs-serv11252

Modified Files:
	activate.c conf.c mount_portal.c pt_exec.c pt_file.c pt_tcp.c 
Log Message:
Cosmetic changes:

- Use syslog(..., "...%m") instead of syslog(..., "...%s",
  strerror(errno)).
- Don't put a simple and single statement into a block.
- Indent continuation line by four space.
- Add an empty line at the beginning of a function if it doesn't have
  local variable.
- Use err() or errx() instead of fprintf(stderr, "progname: ....\n")
  and exit() (there was two place left).
- Use MOUNT_PORTAL, which is defined as "portal" in sys/mount.h,
  instead of using "portal" directly.
- Fold long line to fit column < 80.