cvs commit: src/sys/kern kern_malloc.c
ps 2006-03-06 08:42:07 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/kern kern_malloc.c Log: MFC: rev 1.153 Fix bug in malloc_uninit(): Releasing items from the mt_zone can not be done by a simple uma_zfree() call since mt_zone is allocated with the UMA_ZONE_MALLOC flag. Use uma_zfree_arg instead and supply the slab. This bug caused panics in low memory situations on unloading kernel modules containing MALLOC_DEFINE(..) statements. Approved by:re (scottl) Revision ChangesPath 1.142.2.8 +3 -1 src/sys/kern/kern_malloc.c ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: src/sys/net bridgestp.c if_bridgevar.h
On Mon, Mar 06, 2006 at 02:28:41AM +, Andrew Thompson wrote: > thompsa 2006-03-06 02:28:41 UTC > > FreeBSD src repository > > Modified files: > sys/net bridgestp.c if_bridgevar.h > Log: > If we miss the LINK_UP event from the network interface then the bridge port > will remain in the disabled state until another link event happens in the > future (if at all). Add a timer to periodically check the interface state > and > recover. This should be read: s/If we miss/If the NIC fails to generate/ Its not a timing issue with the link notification, the reporting users network card simply didnt give a link up during boot causing STP to get stuck. Andrew ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/usr.sbin/rpcbind Makefile
matteo 2006-03-06 10:07:52 UTC FreeBSD src repository Modified files: usr.sbin/rpcbind Makefile Log: Don't build IPv6 support if NO_INET6 was defined PR: kern/73865 Submitted by: Jeremy Chadwick <[EMAIL PROTECTED]> MFC after: 3 days Revision ChangesPath 1.6 +5 -1 src/usr.sbin/rpcbind/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/bin/chflags chflags.1
trhodes 2006-03-06 10:12:14 UTC FreeBSD src repository Modified files: bin/chflags chflags.1 Log: Slightly better markup. Discussed with: ru Revision ChangesPath 1.27 +8 -8 src/bin/chflags/chflags.1 ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/lang/eperl Makefile pkg-plist
tobez 2006-03-06 10:14:39 UTC FreeBSD ports repository Modified files: lang/eperl Makefile pkg-plist Log: Fix PerlIO-related coredump. While at it, use EXAMPLESDIR throughout. Bump PORTREVISION. PR: 93981 Submitted by: Matthias Meyser <[EMAIL PROTECTED]> Approved by:portmgr (erwin) Revision ChangesPath 1.45 +4 -3 ports/lang/eperl/Makefile 1.10 +26 -26ports/lang/eperl/pkg-plist ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/lang/eperl/files patch-eperl_perl5.h
tobez 2006-03-06 10:15:34 UTC FreeBSD ports repository Added files: lang/eperl/files patch-eperl_perl5.h Log: Add forgotten patch for the previous commit: Fix PerlIO-related coredump. While at it, use EXAMPLESDIR throughout. Bump PORTREVISION. PR: 93981 Submitted by: Matthias Meyser <[EMAIL PROTECTED]> Approved by:portmgr (erwin) Revision ChangesPath 1.1 +19 -0 ports/lang/eperl/files/patch-eperl_perl5.h (new) ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/usr.sbin/syslogd syslogd.8 syslogd.c
pjd 2006-03-06 10:36:33 UTC FreeBSD src repository Modified files: usr.sbin/syslogd syslogd.8 syslogd.c Log: By default (for security reasons) syslogd(8) doesn't create log files when they don't exist, but sometimes its quite useful (eg. we use non-standard log files and memory backed /var/, which is populated on boot). Add -C option which tells syslogd(8) to create log files if they don't exist. Glanced at by: phk MFC after: 3 days Revision ChangesPath 1.61 +7 -2 src/usr.sbin/syslogd/syslogd.8 1.149 +7 -3 src/usr.sbin/syslogd/syslogd.c ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/converters/ytnef Makefile
garga 2006-03-06 10:38:45 UTC FreeBSD ports repository Modified files: converters/ytnef Makefile Log: Add missing RUN_DEPENDS Submitted by: maintainer by email Reported by:Derek <[EMAIL PROTECTED]> Approved by:portmgr (erwin) Revision ChangesPath 1.2 +1 -0 ports/converters/ytnef/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/sys/kern vfs_syscalls.c src/sys/compat/freebsd32 freebsd32_misc.c
ps 2006-03-06 10:56:43 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/kern vfs_syscalls.c sys/compat/freebsd32 freebsd32_misc.c Log: MFC: Don't truncate f_mntfromname & f_mntonname to 16 characters when translating statfs into ostatfs. Also use strlcpy instead of bcopy to make sure the copied strings are properly terminated. Approved by:re (scottl) Revision ChangesPath 1.38.2.7 +8 -6 src/sys/compat/freebsd32/freebsd32_misc.c 1.392.2.6 +6 -6 src/sys/kern/vfs_syscalls.c ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src Makefile
yar 2006-03-06 11:17:50 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) .Makefile Log: MFC rev. 1.326: Do not discard the current value of __MAKE_CONF when testing whether MAKEOBJDIRPREFIX is set at a wrong place. Approved by:re (scottl) Revision ChangesPath 1.319.2.3 +2 -2 src/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/converters/ytnef Makefile
garga 2006-03-06 11:22:00 UTC FreeBSD ports repository Modified files: converters/ytnef Makefile Log: Bump PORTREVISION dur to last commit Noted by: kris Approved by:portmgr (kris) Revision ChangesPath 1.3 +1 -0 ports/converters/ytnef/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src Makefile
yar 2006-03-06 11:22:53 UTC FreeBSD src repository Modified files:(Branch: RELENG_5) .Makefile Log: MFC rev. 1.326: Do not discard the current value of __MAKE_CONF when testing whether MAKEOBJDIRPREFIX is set at a wrong place. Approved by:re (scottl) Revision ChangesPath 1.306.2.5 +2 -2 src/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/security/vuxml vuln.xml
marius 2006-03-06 12:15:26 UTC FreeBSD ports repository (src committer) Modified files: security/vuxml vuln.xml Log: Add the ssh2-nox11 slave port to the list of ports affected by VID 594ad3c5-a39b-11da-926c-0800209adf0e. Prodded by: Dmitry Pryanishnikov <[EMAIL PROTECTED]> Approved by:portmgr (erwin) Revision ChangesPath 1.965 +3 -1 ports/security/vuxml/vuln.xml ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/lib/libpam/modules/pam_login_access login.access.5
yar 2006-03-06 12:26:43 UTC FreeBSD src repository Modified files: lib/libpam/modules/pam_login_access login.access.5 Log: Sync with src/usr.bin/login/login.access.5. src/usr.bin/login/login.access.5 should be removed from use because the whole login.access feature has moved to this PAM module. MFC after: 3 days Revision ChangesPath 1.14 +1 -5 src/lib/libpam/modules/pam_login_access/login.access.5 ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/usr.bin/login Makefile src/lib/libpam/modules/pam_login_access Makefile
yar 2006-03-06 12:31:25 UTC FreeBSD src repository Modified files: usr.bin/loginMakefile lib/libpam/modules/pam_login_access Makefile Log: Since the whole login.access feature has moved to PAM, login.access.5 will be installed from the respective PAM module's src directory. MFC after: 3 days Revision ChangesPath 1.6 +1 -1 src/lib/libpam/modules/pam_login_access/Makefile 1.50 +2 -2 src/usr.bin/login/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/usr.bin/login pathnames.h
yar 2006-03-06 12:38:42 UTC FreeBSD src repository Modified files: usr.bin/loginpathnames.h Log: login(1) no longer handles /etc/login.access by itself, it's PAM's job. MFC after: 3 days Revision ChangesPath 1.6 +0 -1 src/usr.bin/login/pathnames.h ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/usr.bin/login login.access.5 login_access.c
yar 2006-03-06 12:54:03 UTC FreeBSD src repository Removed files: usr.bin/loginlogin.access.5 login_access.c Log: login.access.5 and login_access.c are no longer used in usr.bin/login because the login.access feature has moved to PAM completely. Their counterparts in lib/libpam/modules/pam_login_access have been found to be in sync with, and even in better shape than, login.access.5 and login_access.c here. Therefore cvs rm login.access.5 and login_access.c from usr.bin/login so that nobody will waste their time on fixing or developing the files here. MFC after: 3 days Revision ChangesPath 1.15 +0 -57 src/usr.bin/login/login.access.5 (dead) 1.11 +0 -239src/usr.bin/login/login_access.c (dead) ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/usr.bin/login README
yar 2006-03-06 12:56:35 UTC FreeBSD src repository Modified files: usr.bin/loginREADME Log: Remove the last reference to LOGIN_ACCESS from login(1). MFC after: 3 days Revision ChangesPath 1.5 +4 -3 src/usr.bin/login/README ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/share/man/man4 sysmouse.4
markus 2006-03-06 13:05:51 UTC FreeBSD src repository (ports committer) Modified files: share/man/man4 sysmouse.4 Log: s/MOUSE_BUTTONEVENT/MOUSE_BUTTON_EVENT/g s/MOUSE_MOTIONEVENT/MOUSE_MOTION_EVENT/g Approved by:brueffer MFC after: 3 days Revision ChangesPath 1.26 +4 -4 src/share/man/man4/sysmouse.4 ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/usr.bin/login login.1
yar 2006-03-06 13:07:17 UTC FreeBSD src repository Modified files: usr.bin/loginlogin.1 Log: Managing login.access is no longer a responsibility of login(1). Therefore give a xref, not details. MFC after: 3 days Revision ChangesPath 1.30 +7 -11 src/usr.bin/login/login.1 ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/lib/libpam/modules/pam_login_access login.access.5 pam_login_access.8
yar 2006-03-06 13:15:12 UTC FreeBSD src repository Modified files: lib/libpam/modules/pam_login_access login.access.5 pam_login_access.8 Log: Add appropriate xrefs. MFC after: 3 days Revision ChangesPath 1.15 +2 -1 src/lib/libpam/modules/pam_login_access/login.access.5 1.6 +1 -1 src/lib/libpam/modules/pam_login_access/pam_login_access.8 ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/graphics/gimpshop Makefile pkg-plist
nork2006-03-06 13:26:00 UTC FreeBSD ports repository Modified files: graphics/gimpshopMakefile pkg-plist Log: Conversion to a single libtool environment. Approved by:portmgr (erwin) Revision ChangesPath 1.191 +1 -1 ports/graphics/gimpshop/Makefile 1.107 +4 -0 ports/graphics/gimpshop/pkg-plist ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: ports/graphics/cenon Makefile pkg-plist
On Sat, Mar 04, 2006 at 09:10:31PM +, Dirk Meyer wrote: > dinoex 2006-03-04 21:10:31 UTC > > FreeBSD ports repository > > Modified files: > graphics/cenon Makefile pkg-plist > Log: > - Fix build after infrastructure update > - Fix package on clean ports tree Thanks! ./danfe ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: www/en/commercial consult.xml
jcamou 2006-03-06 14:19:05 UTC FreeBSD doc repository Modified files: en/commercialconsult.xml Log: Add an entry for TecVD. Requested by: Fco. Jose Garrido Matamoros <[EMAIL PROTECTED]> Approved by:trhodes (mentor) Revision ChangesPath 1.59 +16 -1 www/en/commercial/consult.xml ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/include resolv.h
ume 2006-03-06 14:31:31 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) include resolv.h Log: MFC 1.28: Decrease the value of RES_DFLRETRY from 4 to 2. Approved by:re (scottl) Revision ChangesPath 1.26.2.1 +1 -1 src/include/resolv.h ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/include resolv.h src/lib/libc/net res_init.c
ume 2006-03-06 14:50:09 UTC FreeBSD src repository Modified files:(Branch: RELENG_5) include resolv.h lib/libc/net res_init.c Log: MFC: Decrease the value of RES_DFLRETRY from 4 to 2. include/resolv.h: 1.26, 1.28 lib/libc/net/res_init.c:1.33 Approved by:re (scottl) Revision ChangesPath 1.25.2.1 +1 -0 src/include/resolv.h 1.32.2.1 +1 -1 src/lib/libc/net/res_init.c ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/lib/libc/net inet_net.3 inet_net_ntop.c inet_net_pton.c
ume 2006-03-06 14:53:51 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) lib/libc/net inet_net.3 inet_net_ntop.c inet_net_pton.c Log: MFC: Sync inet_net_pton() and inet_net_ntop() with latest BIND9's includes an IPv6 support. lib/libc/net/inet_net.3:1.3 lib/libc/net/inet_net_ntop.c: 1.8 lib/libc/net/inet_net_pton.c: 1.10 Approved by:re (scottl) Revision ChangesPath 1.2.12.1 +10 -4 src/lib/libc/net/inet_net.3 1.7.14.1 +147 -14 src/lib/libc/net/inet_net_ntop.c 1.9.10.1 +263 -67 src/lib/libc/net/inet_net_pton.c ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/lib/libc/net inet_net.3 inet_net_ntop.c inet_net_pton.c
ume 2006-03-06 14:55:48 UTC FreeBSD src repository Modified files:(Branch: RELENG_5) lib/libc/net inet_net.3 inet_net_ntop.c inet_net_pton.c Log: MFC: Sync inet_net_pton() and inet_net_ntop() with latest BIND9's includes an IPv6 support. lib/libc/net/inet_net.3:1.3 lib/libc/net/inet_net_ntop.c: 1.8 lib/libc/net/inet_net_pton.c: 1.10 Approved by:re (scottl) Revision ChangesPath 1.2.6.1 +10 -4 src/lib/libc/net/inet_net.3 1.7.8.1 +147 -14 src/lib/libc/net/inet_net_ntop.c 1.9.4.1 +263 -67 src/lib/libc/net/inet_net_pton.c ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: src/sys/pc98/conf NOTES
On Sat, Mar 04, 2006 at 07:31:58AM +, Takahashi Yoshihiro wrote: > nyan2006-03-04 07:31:58 UTC > > FreeBSD src repository > > Modified files: > sys/pc98/confNOTES > Log: > MFi386: revision 1.1220. > > Revision ChangesPath > 1.73 +2 -3 src/sys/pc98/conf/NOTES Thanks, I missed it. Missed that also in amd64, will fix now. -- Yar ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/sys/amd64/conf NOTES
yar 2006-03-06 15:29:28 UTC FreeBSD src repository Modified files: sys/amd64/conf NOTES Log: MFi386 revision 1.1220: options TDFX_LINUX --> device tdfx_linux Revision ChangesPath 1.52 +2 -3 src/sys/amd64/conf/NOTES ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: src/usr.bin/finger sprint.c
On Sat, Mar 04, 2006 at 04:31:49PM +, Robert Watson wrote: > > BTW, the Linux layout solution is to allow the line to wrap, which I think > is pretty ugly. One place we could crib additional space is that we put > two-space gaps between columns, and could reduce that universally to one > space. This might reduce readability for data that involves spaces, such > as login date. Another possibility is to trim the username a little > earlier -- right now we have a very wide user column compared to other > systems due to making room for 16-character usernames, which are not > supported on on some other systems. BTW, any ideas where to find some spare space for quota(1)? Disk quotas for user yar (uid 1000): Filesystem usage quota limit grace files quota limit grace /s22979672*2097152031457280 6days1368 0 0 -- Yar ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: src/usr.bin/finger sprint.c
On Mon, Mar 06, 2006 at 06:41:06PM +0300 I heard the voice of Yar Tikhiy, and lo! it spake thus: > > BTW, any ideas where to find some spare space for quota(1)? Don't forget repquota(8) too. A lot of scripts I've slapped together get really upset when things run together... -- Matthew Fuller (MF4839) | [EMAIL PROTECTED] Systems/Network Administrator | http://www.over-yonder.net/~fullermd/ On the Internet, nobody can hear you scream. ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: www/en/projects newbies.sgml projects.sgml
jcamou 2006-03-06 16:01:14 UTC FreeBSD doc repository Modified files: en/projects newbies.sgml projects.sgml Log: Add NanoBSD to the list of projects. PR: www/94061 Submitted by: Daniel Gerzo <[EMAIL PROTECTED]> Approved by:trhodes (mentor) Revision ChangesPath 1.50 +27 -22www/en/projects/newbies.sgml 1.187 +8 -1 www/en/projects/projects.sgml ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/sys/dev/ata ata-disk.c
mlaier 2006-03-06 16:02:06 UTC FreeBSD src repository Modified files: sys/dev/ata ata-disk.c Log: Fix the build. %ju prints uintmax_t not unsigned long long (which is actually "longer" than uintmax_t for the understanding of printf). Revision ChangesPath 1.195 +3 -3 src/sys/dev/ata/ata-disk.c ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/sys/modules Makefile
mlaier 2006-03-06 16:05:53 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/modules Makefile Log: Link the firmware module the build. Forgotten in original MFC. Reminded by:Joerg Pulz Approved by:re (scottl) RevisionChangesPath 1.450.2.11 +1 -0 src/sys/modules/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/etc/rc.d pflog src/sys/contrib/pf/net if_pflog.c if_pflog.h pf_ioctl.c src/sys/modules Makefile src/sys/modules/pf Makefile src/sys/modules/pflog Makefile
mlaier 2006-03-06 16:10:19 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) etc/rc.d pflog sys/contrib/pf/net if_pflog.c if_pflog.h pf_ioctl.c sys/modules Makefile sys/modules/pf Makefile Added files: (Branch: RELENG_6) sys/modules/pflogMakefile Log: MFC: Make pflog a seperate module. As a result pflog_packet() becomes a function pointer that is declared in pf_ioctl.c Requested by: yar (as part of the module build reorg) Approved by:re (scottl) RevisionChangesPath 1.5.2.2 +3 -3 src/etc/rc.d/pflog 1.13.2.2+8 -1 src/sys/contrib/pf/net/if_pflog.c 1.6.2.1 +14 -0 src/sys/contrib/pf/net/if_pflog.h 1.20.2.2+5 -0 src/sys/contrib/pf/net/pf_ioctl.c 1.450.2.12 +2 -0 src/sys/modules/Makefile 1.7.2.1 +0 -3 src/sys/modules/pf/Makefile 1.4.2.1 +27 -0 src/sys/modules/pflog/Makefile (new) ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: src/etc/defaults periodic.conf src/etc/periodic/daily 406.status-gmirror
On Fri, Jan 13, 2006 at 06:07:52PM +, Garrett Wollman wrote: > wollman 2006-01-13 18:07:52 UTC > > FreeBSD src repository > > Modified files: > etc/defaults periodic.conf > Added files: > etc/periodic/daily 406.status-gmirror > Log: > Add a daily script to show the status of gmirror(8) devices. Could you please make sure this gets MFC'd to 6.1? We're deploying now a few (tens) of machines, and I wouldn't want to have to keep this as a local diff. TIA, bye, Andrea -- Weird enough for government work. ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: www/en/projects newbies.sgml
jcamou 2006-03-06 16:25:13 UTC FreeBSD doc repository Modified files: en/projects newbies.sgml Log: Forced commit to set a commit message for my previous accidental commit on newbies.sgml. Log: o Do some general rewording. o Remove smilies. o Add link to the version-guide article. o s/&base;/&url.base;/ PR: www/92986 Submitted by: Daniel Gerzo <[EMAIL PROTECTED]> Approved by:trhodes (mentor) Pointy hat: jcamou Revision ChangesPath 1.51 +1 -1 www/en/projects/newbies.sgml ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: www/en/docproj todo.sgml
jcamou 2006-03-06 16:39:11 UTC FreeBSD doc repository Modified files: en/docproj todo.sgml Log: Set me as responsible for the electronic mail chapter update. Approved by:trhodes (mentor) Revision ChangesPath 1.4 +3 -3 www/en/docproj/todo.sgml ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: CVSROOT access
hm 2006-03-06 16:45:04 UTC FreeBSD src repository Modified files: .access Log: Add Thomas Wintergerst ([EMAIL PROTECTED]) as a new src committer. Thomas has done a large piece of work getting CAPI support for active ISDN hardware for FreeBSD ready which will now hopefully find its way into the FreeBSD base system. Approved by: core Revision ChangesPath 1.743 +1 -0 CVSROOT/access ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/sys/net80211 ieee80211_input.c ieee80211_node.c ieee80211_node.h ieee80211_proto.c ieee80211_var.h
sam 2006-03-06 17:23:26 UTC FreeBSD src repository Modified files: sys/net80211 ieee80211_input.c ieee80211_node.c ieee80211_node.h ieee80211_proto.c ieee80211_var.h Log: when scanning channels marked passive defer probe request until 802.11 traffic is seen; fixes problems with ap's hiding their ssid Obtained from: atheros MFC after: 1 week Revision ChangesPath 1.88 +12 -0 src/sys/net80211/ieee80211_input.c 1.73 +27 -0 src/sys/net80211/ieee80211_node.c 1.24 +1 -0 src/sys/net80211/ieee80211_node.h 1.29 +4 -12 src/sys/net80211/ieee80211_proto.c 1.40 +1 -0 src/sys/net80211/ieee80211_var.h ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/sys/net80211 ieee80211_input.c
sam 2006-03-06 17:26:16 UTC FreeBSD src repository Modified files: sys/net80211 ieee80211_input.c Log: deliver an l2uf frame on sta join to prime the bridge Obtained from: madwifi MFC after: 1 week Revision ChangesPath 1.89 +51 -0 src/sys/net80211/ieee80211_input.c ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: src/usr.sbin/syslogd syslogd.8 syslogd.c
At 10:36 AM + 3/6/06, Pawel Jakub Dawidek wrote: pjd 2006-03-06 10:36:33 UTC FreeBSD src repository Modified files: usr.sbin/syslogd syslogd.8 syslogd.c Log: By default (for security reasons) syslogd(8) doesn't create log files when they don't exist, but sometimes its quite useful (eg. we use non-standard log files and memory backed /var/, which is populated on boot). Add -C option which tells syslogd(8) to create log files if they don't exist. Hmm. Note that newsyslog includes an option to automatically create files. Presumably the log files created by syslogd would need to be rotated, in which case they'll already have entries in newsyslog.conf. The advantage of creating them in newsyslog is that newsyslog knows what owner, group, and chmod bits the files should have. I would not say that I object to the idea of having this option in syslogd, but I'd think people would be much better off using newsyslog to create any of the files. -- Garance Alistair Drosehn= [EMAIL PROTECTED] Senior Systems Programmer or [EMAIL PROTECTED] Rensselaer Polytechnic Instituteor [EMAIL PROTECTED] ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/share/man/man4 netgraph.4
keramida2006-03-06 17:37:43 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 netgraph.4 Log: Revert parts of 1.51 and add a missing \& after "i.e." that is not the end of a sentence. Ruslan notes that: * The part about hexadecimal representation was intentional -- node ID is parsed as the ng_parse_hint32_type, and is represented (input/output) as a hexadecimal number * "This value" was more correct, as the alternative name is "[]:" where is hexadecimal value of the node ID. * "ID based name" (which is "[]:") was correct, and what's now is incorrect -- node ID (number) cannot be equivalent to a name. Revision ChangesPath 1.52 +7 -6 src/share/man/man4/netgraph.4 ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: CVSROOT access
blackend2006-03-06 18:05:03 UTC FreeBSD doc repository Modified files: .access Log: Remove mp@ who has been inactive in doc+www area for more than three years and who has not responded to doceng@ mail. Revision ChangesPath 1.553 +0 -1 CVSROOT/access ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: www/en/releases/6.1R schedule.sgml www/en/releases/5.5R schedule.sgml
hrs 2006-03-06 18:16:28 UTC FreeBSD doc repository Modified files: en/releases/6.1R schedule.sgml en/releases/5.5R schedule.sgml Log: Update dates of 6.1-BETA3, 5.5-BETA3, and doc slush announcement. Revision ChangesPath 1.4 +4 -4 www/en/releases/5.5R/schedule.sgml 1.4 +18 -2 www/en/releases/6.1R/schedule.sgml ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: src/sys/kern kern_tc.c
On Saturday 04 March 2006 01:07, Poul-Henning Kamp wrote: > phk 2006-03-04 06:07:26 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_tc.c > Log: > Add missing cast. This is one part of the fixes I needed on Alpha. The missing cast handles the case where tc_counter_mask was ~0u, and the unsigned value of ~0u + 1 is 0, so base was never being updated during roll-overs. -- John Baldwin <[EMAIL PROTECTED]> <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: src/usr.sbin/syslogd syslogd.8 syslogd.c
On Monday 06 March 2006 05:36, Pawel Jakub Dawidek wrote: > pjd 2006-03-06 10:36:33 UTC > > FreeBSD src repository > > Modified files: > usr.sbin/syslogd syslogd.8 syslogd.c > Log: > By default (for security reasons) syslogd(8) doesn't create log files > when they don't exist, but sometimes its quite useful (eg. we use > non-standard log files and memory backed /var/, which is populated on > boot). > > Add -C option which tells syslogd(8) to create log files if they don't > exist. > > Glanced at by: phk > MFC after: 3 days Did you know about the -C option to newsyslog? newsyslog is a better too for creating the log files since its config file can specify permissions (owner, group, chmod). -- John Baldwin <[EMAIL PROTECTED]> <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: www/en developers.sgml
hrs 2006-03-06 18:56:47 UTC FreeBSD doc repository Modified files: en developers.sgml Log: Add a.andre, a.kmacy, and a.mohans. Revision ChangesPath 1.127 +4 -1 www/en/developers.sgml ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: www/en/releases/6.1R todo.sgml
hrs 2006-03-06 18:59:07 UTC FreeBSD doc repository Modified files: en/releases/6.1R todo.sgml Log: Add new items: exec_map depletion, NFS data corruption between two 7.0 machines, panic in fxp driver, deadlock in vn_start_write() consumers, panic in bpf, devfs locking problem, pty leak, trap in cpu_ipi_selected() on sparc64, and rpc.lockd interoperability problems. Thanks to: kris Revision ChangesPath 1.14 +76 -3 www/en/releases/6.1R/todo.sgml ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/japanese/dvipsk Makefile distinfo
hrs 2006-03-06 19:08:32 UTC FreeBSD ports repository Modified files: japanese/dvipsk Makefile distinfo Log: Update distinfo and bump PORTREVISION because the distfile is updated again. Change the master site to prevent further unreasonable distfile replacing. Approved by:portmgr (erwin) Revision ChangesPath 1.35 +1 -2 ports/japanese/dvipsk/Makefile 1.14 +3 -3 ports/japanese/dvipsk/distinfo ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: doc/en_US.ISO8859-1/books/handbook/security chapter.sgml
jcamou 2006-03-06 19:26:16 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/security chapter.sgml Log: Document the use of the rc.d script for sshd instead of simply `sshd'. PR: docs/94112 Submitted by: Pierre-Paul Lavoie <[EMAIL PROTECTED]> Patch by: Daniel Gerzo <[EMAIL PROTECTED]> Approved by:trhodes (mentor) Revision ChangesPath 1.292 +5 -2 doc/en_US.ISO8859-1/books/handbook/security/chapter.sgml ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: doc/en_US.ISO8859-1/articles/contributing article.sgml
jcamou 2006-03-06 19:33:34 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributing article.sgml Log: Add link to the `Ideas' page maintained by [EMAIL PROTECTED] PR: docs/92745 Submitted by: Daniel Gerzo <[EMAIL PROTECTED]> Approved by:trhodes (mentor) Revision ChangesPath 1.507 +10 -0 doc/en_US.ISO8859-1/articles/contributing/article.sgml ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src Makefile
ru 2006-03-06 19:36:23 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) .Makefile Log: MFC: don't attempt to compile DEFAULTS and don't compile LINT twice. Requested by: jkoshy Approved by:re (scottl) Revision ChangesPath 1.319.2.4 +2 -1 src/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: www/en/releases/6.1R todo.sgml
On Mon, Mar 06, 2006 at 06:59:07PM +, Hiroki Sato wrote: H> H> Modified files: H> en/releases/6.1R todo.sgml H> Log: H> Add new items: H> exec_map depletion, H> NFS data corruption between two 7.0 machines, H> panic in fxp driver, H> deadlock in vn_start_write() consumers, H> panic in bpf, H> devfs locking problem, H> pty leak, H> trap in cpu_ipi_selected() on sparc64, and H> rpc.lockd interoperability problems. Is it possible place kern/87208 into TODO list for 6.1-RELEASE? The problem appeared to be a bad regression in 6.0-RELEASE, that hurted many users. The PR contains several test cases, description and patch for the problem. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/x11-wm/enlightenment Makefile
kris2006-03-06 20:24:06 UTC FreeBSD ports repository Modified files: x11-wm/enlightenment Makefile Log: BROKEN: Still has incomplete pkg-plist Approved by:portmgr (implicit) Revision ChangesPath 1.91 +2 -0 ports/x11-wm/enlightenment/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/emulators/skyeye Makefile
kris2006-03-06 20:26:52 UTC FreeBSD ports repository Modified files: emulators/skyeye Makefile Log: BROKEN on !i386: Does not compile Approved by:portmgr (implicit) Revision ChangesPath 1.4 +7 -1 ports/emulators/skyeye/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/games/sfbol Makefile
kris2006-03-06 20:27:29 UTC FreeBSD ports repository Modified files: games/sfbol Makefile Log: BROKEN: Tries to use java before it's present Approved by:portmgr (implicit) Revision ChangesPath 1.2 +2 -0 ports/games/sfbol/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/editors/speedbar-emacs20 Makefile
kris2006-03-06 20:28:02 UTC FreeBSD ports repository Modified files: editors/speedbar-emacs20 Makefile Log: BROKEN: Incorrect pkg-plist Repeatedly ignored requests to fix his commits: edwin Approved by:portmgr (implicit) Revision ChangesPath 1.3 +2 -0 ports/editors/speedbar-emacs20/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/cad/xcircuit Makefile
kris2006-03-06 20:29:24 UTC FreeBSD ports repository Modified files: cad/xcircuit Makefile Log: BROKEN: Incorrect pkg-plist Approved by:portmgr (implicit) Revision ChangesPath 1.58 +2 -0 ports/cad/xcircuit/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/x11-servers/xorg-server-snap Makefile
kris2006-03-06 20:30:19 UTC FreeBSD ports repository Modified files: x11-servers/xorg-server-snap Makefile Log: BROKEN on sparc64: Does not compile Approved by:portmgr (implicit) Revision ChangesPath 1.35 +1 -0 ports/x11-servers/xorg-server-snap/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/math/coq Makefile
kris2006-03-06 20:30:52 UTC FreeBSD ports repository Modified files: math/coq Makefile Log: BROKEN: Does not build Approved by:portmgr (implicit) Revision ChangesPath 1.11 +2 -0 ports/math/coq/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/games/ggz-kde-client Makefile
kris2006-03-06 20:32:10 UTC FreeBSD ports repository Modified files: games/ggz-kde-client Makefile Log: BROKEN: Incomplete pkg-plist Approved by:portmgr (implicit) Revision ChangesPath 1.2 +2 -0 ports/games/ggz-kde-client/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/devel/hp48xgcc Makefile
kris2006-03-06 20:33:56 UTC FreeBSD ports repository Modified files: devel/hp48xgcc Makefile Log: BROKEN on !i386: Configure fails Approved by:portmgr (implicit) Revision ChangesPath 1.4 +7 -1 ports/devel/hp48xgcc/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/java/jc Makefile
kris2006-03-06 20:34:58 UTC FreeBSD ports repository Modified files: java/jc Makefile Log: Add NO_PACKAGE since this apparently takes an enormous amount of RAM to build, and has never built successfully on the package cluster since the update last year. Approved by:portmgr (implicit) Revision ChangesPath 1.29 +2 -0 ports/java/jc/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/shells/ksh93 Makefile
kris2006-03-06 20:35:29 UTC FreeBSD ports repository Modified files: shells/ksh93 Makefile Log: BROKEN: Size mismatch Approved by:portmgr (implicit) Revision ChangesPath 1.45 +2 -0 ports/shells/ksh93/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/net-im/libjingle Makefile
kris2006-03-06 20:36:14 UTC FreeBSD ports repository Modified files: net-im/libjingle Makefile Log: BROKEN on !i386: Does not compile Approved by:portmgr (implicit) Revision ChangesPath 1.2 +4 -0 ports/net-im/libjingle/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/devel/looks Makefile
kris2006-03-06 20:37:07 UTC FreeBSD ports repository Modified files: devel/looks Makefile Log: BROKEN: Unfetchable Approved by:portmgr (implicit) Revision ChangesPath 1.5 +2 -0 ports/devel/looks/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/editors/ooo-build Makefile
kris2006-03-06 20:37:22 UTC FreeBSD ports repository Modified files: editors/ooo-buildMakefile Log: BROKEN: Unfetchable Approved by:portmgr (implicit) Revision ChangesPath 1.5 +2 -0 ports/editors/ooo-build/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/comms/vpb-driver Makefile
kris2006-03-06 20:38:44 UTC FreeBSD ports repository Modified files: comms/vpb-driver Makefile Log: BROKEN: Incomplete pkg-plist Approved by:portmgr (implicit) Revision ChangesPath 1.5 +2 -0 ports/comms/vpb-driver/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: doc/en_US.ISO8859-1/books/handbook/security chapter.sgml
On Mon, Mar 06, 2006 at 07:26:16PM +, Jesus R. Camou wrote: > jcamou 2006-03-06 19:26:16 UTC > > FreeBSD doc repository > > Modified files: > en_US.ISO8859-1/books/handbook/security chapter.sgml > Log: > Document the use of the rc.d script for sshd > instead of simply `sshd'. > | rc.conf file for: > |sshd_enable="YES" > |This will load &man.sshd.8;, the daemon program for > OpenSSH, > | - the next time your system initializes. Alternatively, you can > | - simply run directly the sshd daemon by > typing sshd on the command line. > | + the next time your system initializes. Alternatively, it is > | + possible to use /etc/rc.d/sshd &man.rc.8; ^^^ the Ceri -- That must be wonderful! I don't understand it at all. -- Moliere pgpTSK1whrJ0n.pgp Description: PGP signature
cvs commit: ports/x11-wm/bbconf Makefile
kris2006-03-06 20:39:53 UTC FreeBSD ports repository Modified files: x11-wm/bbconfMakefile Log: BROKEN on amd64: Does not compile Approved by:portmgr (implicit) Revision ChangesPath 1.17 +7 -1 ports/x11-wm/bbconf/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/net/openam Makefile
kris2006-03-06 20:43:02 UTC FreeBSD ports repository Modified files: net/openam Makefile Log: BROKEN: Incomplete dependency list Approved by:portmgr (implicit) Revision ChangesPath 1.30 +2 -0 ports/net/openam/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/net/ohphone Makefile
kris2006-03-06 20:43:50 UTC FreeBSD ports repository Modified files: net/ohphone Makefile Log: BROKEN: Incomplete dependency list Approved by:portmgr (implicit) Revision ChangesPath 1.26 +2 -0 ports/net/ohphone/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: www/en/releases/6.1R todo.sgml
hrs 2006-03-06 20:44:07 UTC FreeBSD doc repository Modified files: en/releases/6.1R todo.sgml Log: Add new item: dup(2) regression on 6.x. Requested by: glebius Revision ChangesPath 1.15 +11 -1 www/en/releases/6.1R/todo.sgml ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/net/opengk Makefile
kris2006-03-06 20:44:09 UTC FreeBSD ports repository Modified files: net/opengk Makefile Log: BROKEN: Incomplete dependency list Approved by:portmgr (implicit) Revision ChangesPath 1.13 +2 -0 ports/net/opengk/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/net/openmcu Makefile
kris2006-03-06 20:44:46 UTC FreeBSD ports repository Modified files: net/openmcu Makefile Log: BROKEN: Incomplete dependency list Approved by:portmgr (implicit) Revision ChangesPath 1.23 +2 -0 ports/net/openmcu/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: doc/en_US.ISO8859-1/articles/contributing article.sgml
On Mon, Mar 06, 2006 at 07:33:34PM +, Jesus R. Camou wrote: > jcamou 2006-03-06 19:33:34 UTC > > FreeBSD doc repository > > Modified files: > en_US.ISO8859-1/articles/contributing article.sgml > Log: > Add link to the `Ideas' page > maintained by [EMAIL PROTECTED] > Approved by:trhodes (mentor) He could never spell either :) > | @@ -220,6 +220,16 @@ > | and ask if you can work on it—they might already have a > | patch ready to be tested, or further ideas that you can > | discuss with them. > | + > | + > | + > | + Pick one of the items from the Ideas > page > | + > | + The &os; list of > | + projects and ideas for volunteers is also available for > | + people willing to contribute to the &os; project. The list is > | + being reguraly updated and contains items for both programmers regularly Ceri -- That must be wonderful! I don't understand it at all. -- Moliere pgpvu9aFfoj6O.pgp Description: PGP signature
cvs commit: ports/net/gnomemeeting Makefile
kris2006-03-06 20:47:23 UTC FreeBSD ports repository Modified files: net/gnomemeeting Makefile Log: BROKEN: Incomplete dependency list Approved by:portmgr (implicit) Revision ChangesPath 1.55 +2 -0 ports/net/gnomemeeting/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: www/en/releases/6.1R todo.sgml
Gleb Smirnoff <[EMAIL PROTECTED]> wrote in <[EMAIL PROTECTED]>: gl> Is it possible place kern/87208 into TODO list for 6.1-RELEASE? gl> The problem appeared to be a bad regression in 6.0-RELEASE, gl> that hurted many users. The PR contains several test cases, gl> description and patch for the problem. Thanks, added just now. Will this description do? -- | Hiroki SATO pgpq4KW9ek2AY.pgp Description: PGP signature
Re: cvs commit: ports/cad/xcircuit Makefile
On Mon, 6 Mar 2006 20:29:24 + (UTC) Kris Kennaway <[EMAIL PROTECTED]> wrote: > kris2006-03-06 20:29:24 UTC > > FreeBSD ports repository > > Modified files: > cad/xcircuit Makefile > Log: > BROKEN: Incorrect pkg-plist > > Approved by:portmgr (implicit) I'm not sure about this, it seem to fail only on tinderbox and package / deinstall OK on my machine. -- IOnut - Unregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" BOFH excuse #397: T1's congested due to porn traffic to the news server ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: ports/editors/speedbar-emacs20 Makefile
On Mon, 6 Mar 2006 20:28:02 + (UTC) Kris Kennaway <[EMAIL PROTECTED]> wrote: > kris2006-03-06 20:28:02 UTC > > FreeBSD ports repository > > Modified files: > editors/speedbar-emacs20 Makefile > Log: > BROKEN: Incorrect pkg-plist > > Repeatedly ignored requests to fix his commits: edwin > Approved by:portmgr (implicit) ports/94081 -- IOnut - Unregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" BOFH excuse #436: Daemon escaped from pentagram ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: ports/cad/xcircuit Makefile
On Mon, Mar 06, 2006 at 11:15:49PM +0200, Ion-Mihai Tetcu wrote: > On Mon, 6 Mar 2006 20:29:24 + (UTC) > Kris Kennaway <[EMAIL PROTECTED]> wrote: > > > kris2006-03-06 20:29:24 UTC > > > > FreeBSD ports repository > > > > Modified files: > > cad/xcircuit Makefile > > Log: > > BROKEN: Incorrect pkg-plist > > > > Approved by:portmgr (implicit) > > I'm not sure about this, it seem to fail only on tinderbox and > package / deinstall OK on my machine. So the next step is to figure out from the log what is failing and why :) Kris pgpmHDtOxrMW0.pgp Description: PGP signature
cvs commit: doc/en_US.ISO8859-1/books/handbook/ppp-and-slip chapter.sgml
blackend2006-03-06 21:31:21 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/ppp-and-slip chapter.sgml Log: s/to startup/to start up/ Revision ChangesPath 1.172 +1 -1 doc/en_US.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/tools/tools/ncpus Makefile acpi.c biosmptable.c ncpus.c
sam 2006-03-06 21:51:27 UTC FreeBSD src repository Modified files: tools/tools/ncpusMakefile acpi.c biosmptable.c ncpus.c Log: fixups Submitted by: ru MFC after: 3 days Revision ChangesPath 1.3 +2 -1 src/tools/tools/ncpus/Makefile 1.3 +2 -5 src/tools/tools/ncpus/acpi.c 1.2 +14 -9 src/tools/tools/ncpus/biosmptable.c 1.3 +1 -1 src/tools/tools/ncpus/ncpus.c ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: doc/en_US.ISO8859-1/articles/contributing article.sgml
jcamou 2006-03-06 21:52:11 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributing article.sgml Log: Fix typo. Noticed by: ceri Approved by:trhodes (mentor) Revision ChangesPath 1.508 +1 -1 doc/en_US.ISO8859-1/articles/contributing/article.sgml ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/usr.bin/xinstall install.1 xinstall.c
obrien 2006-03-06 21:52:59 UTC FreeBSD src repository Modified files: usr.bin/xinstall install.1 xinstall.c Log: Add an override (DONTSTRIP) so that one can easily install debugable binaries when one cannot easily edit a package's Makefiles and/or configure scripts. Revision ChangesPath 1.34 +9 -0 src/usr.bin/xinstall/install.1 1.67 +5 -0 src/usr.bin/xinstall/xinstall.c ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: ports/cad/xcircuit Makefile
On Mon, 6 Mar 2006 16:18:30 -0500 Kris Kennaway <[EMAIL PROTECTED]> wrote: > On Mon, Mar 06, 2006 at 11:15:49PM +0200, Ion-Mihai Tetcu wrote: > > On Mon, 6 Mar 2006 20:29:24 + (UTC) > > Kris Kennaway <[EMAIL PROTECTED]> wrote: > > > > > kris2006-03-06 20:29:24 UTC > > > > > > FreeBSD ports repository > > > > > > Modified files: > > > cad/xcircuit Makefile > > > Log: > > > BROKEN: Incorrect pkg-plist > > > > > > Approved by:portmgr (implicit) > > > > I'm not sure about this, it seem to fail only on tinderbox and > > package / deinstall OK on my machine. > > So the next step is to figure out from the log what is failing and why > :) ^:-/ after I saw the log from pointyhat I also was a commit that was supposed to fix it; I tested the port on my machine and it was OK, tested on tb and it was broken; I assumed it's something wrong with my tinderbox. I won't let myself feel a little bit demotivated by the fact that my PRs un-breaking ports sit in GNATS un-commited; I'll look again at it tomorrow. I find it a somehow awkward I have to work the PR, then go bug a portmgr for approval and then bug commiters to commit. -- IOnut - Unregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" BOFH excuse #126: it has Intel Inside ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/shells/bash Makefile
kris2006-03-06 21:58:25 UTC FreeBSD ports repository Modified files: shells/bash Makefile Log: When bash is built with the bison 1.75 port present it breaks the ability of bash to parse certain legal shell scripts (used by e.g. GNU configure). Fix this by explicitly directing bash to use yacc. Bump PORTREVISION since this is likely to be a common enough occurrence that many users will benefit from the rebuild. Submitted by: Nicolas Rachinsky <[EMAIL PROTECTED]> PR: ports/94086 Approved by:portmgr (implicit) Revision ChangesPath 1.89 +3 -1 ports/shells/bash/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: www/en/releases/6.1R todo.sgml
On Tue, Mar 07, 2006 at 05:46:54AM +0900, Hiroki Sato wrote: H> gl> Is it possible place kern/87208 into TODO list for 6.1-RELEASE? H> gl> The problem appeared to be a bad regression in 6.0-RELEASE, H> gl> that hurted many users. The PR contains several test cases, H> gl> description and patch for the problem. H> H> Thanks, added just now. Will this description do? Looks fine, thanks. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: ports/cad/xcircuit Makefile
Ion-Mihai Tetcu píše v po 06. 03. 2006 v 23:55 +0200: > I won't let myself feel a little bit demotivated by the fact that my PRs > un-breaking ports sit in GNATS un-commited; I'll look again at it > tomorrow. I find it a somehow awkward I have to work the PR, then go > bug a portmgr for approval and then bug commiters to commit. You should offload portmgr bugging to the committer. -- Pav Lucistnik <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> EMACS: Eight Megabytes And Continually Swapping signature.asc Description: Toto je digitálně podepsaná část zprávy
Re: cvs commit: ports/cad/xcircuit Makefile
On Mon, Mar 06, 2006 at 11:04:33PM +0100, Pav Lucistnik wrote: > Ion-Mihai Tetcu p??e v po 06. 03. 2006 v 23:55 +0200: > > > I won't let myself feel a little bit demotivated by the fact that my PRs > > un-breaking ports sit in GNATS un-commited; I'll look again at it > > tomorrow. I find it a somehow awkward I have to work the PR, then go > > bug a portmgr for approval and then bug commiters to commit. > > You should offload portmgr bugging to the committer. Yeah. Thanks for your work on fixing things though, it's very much appreciated! Kris pgphGGa7POaHm.pgp Description: PGP signature
Re: cvs commit: ports/cad/xcircuit Makefile
On Mon, 6 Mar 2006 17:06:58 -0500 Kris Kennaway <[EMAIL PROTECTED]> wrote: > On Mon, Mar 06, 2006 at 11:04:33PM +0100, Pav Lucistnik wrote: > > Ion-Mihai Tetcu p??e v po 06. 03. 2006 v 23:55 +0200: > > > > > I won't let myself feel a little bit demotivated by the fact that my PRs > > > un-breaking ports sit in GNATS un-commited; I'll look again at it > > > tomorrow. I find it a somehow awkward I have to work the PR, then go > > > bug a portmgr for approval and then bug commiters to commit. > > > > You should offload portmgr bugging to the committer. > > Yeah. Thanks for your work on fixing things though, it's very much > appreciated! Thanks. Well, I don't do it necessarily in that order (except I do the PR first :) Besides, I do it on IRC when I catch one of you there :) -- IOnut - Unregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" Ferengi Rule of Acquisition #65: Win or lose, there's always Hupyrian beetle snuff. -- ST: Legends of the Ferengi ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/java/java-tutorial Makefile distinfo pkg-descr
pav 2006-03-06 22:19:53 UTC FreeBSD ports repository Modified files: java/java-tutorial Makefile distinfo pkg-descr Log: - Update to 2006.03.06 and unbreak - Drop maintainership PR: ports/94122 Submitted by: Ion-Mihai "IOnut" Tetcu <[EMAIL PROTECTED]> Approved by:Michael C. Shultz <[EMAIL PROTECTED]> (maintainer) Approved by:portmgr (krion) Revision ChangesPath 1.38 +3 -5 ports/java/java-tutorial/Makefile 1.19 +13 -7 ports/java/java-tutorial/distinfo 1.4 +0 -3 ports/java/java-tutorial/pkg-descr ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/etc group
rwatson 2006-03-06 22:23:10 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) etc group Log: Merge group:1.33,1.34 from HEAD to RELENG_6: Assign gid 77 to audit instead of gid 73. The ports group list did not include '73', which was assigned in a ports passwd entry to ircservices. Pointed out by: ceri Allocate an 'audit' group, membership in which will grant the audit review right by virtue of read file permission on /var/audit and its contents. Obtained from: TrustedBSD Project Approved by:re (scottl) Revision ChangesPath 1.32.2.1 +1 -0 src/etc/group ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: src/tools/tools/umastat umastat.c
wkoszek 2006-03-06 22:31:25 UTC FreeBSD src repository Modified files: tools/tools/umastat umastat.c Log: Allocate proper amount of memory. Otherwise, we pass the end of a buffer, thus having unpleasant warning. Was found by jemalloc redzone code. Reviewed by:rwatson Approved by:cognet (mentor) Revision ChangesPath 1.4 +1 -1 src/tools/tools/umastat/umastat.c ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/net-p2p/verlihub-plugins Makefile
pav 2006-03-06 22:32:11 UTC FreeBSD ports repository Modified files: net-p2p/verlihub-plugins Makefile Log: - Remove references to recently removed pkg-message PR: ports/94080 Submitted by: Ion-Mihai "IOnut" Tetcu <[EMAIL PROTECTED]> Approved by:portmgr (krion) Revision ChangesPath 1.5 +0 -5 ports/net-p2p/verlihub-plugins/Makefile ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: src/usr.sbin/syslogd syslogd.8 syslogd.c
On Monday, 6 March 2006 at 12:33:57 -0500, Garance A Drosihn wrote: > At 10:36 AM + 3/6/06, Pawel Jakub Dawidek wrote: >> pjd 2006-03-06 10:36:33 UTC >> >> FreeBSD src repository >> >> Modified files: >>usr.sbin/syslogd syslogd.8 syslogd.c >> Log: >> By default (for security reasons) syslogd(8) doesn't create >> log files when they don't exist, but sometimes its quite >> useful (eg. we use non-standard log files and memory backed >> /var/, which is populated on boot). >> >> Add -C option which tells syslogd(8) to create log files if >> they don't exist. > > Hmm. Note that newsyslog includes an option to automatically > create files. Presumably the log files created by syslogd would > need to be rotated, in which case they'll already have entries > in newsyslog.conf. > > The advantage of creating them in newsyslog is that newsyslog > knows what owner, group, and chmod bits the files should have. > I would not say that I object to the idea of having this option > in syslogd, but I'd think people would be much better off using > newsyslog to create any of the files. Agreed. Both have their place. The syslog man page should refer to the advantages of newsyslog for this purpose. Greg -- See complete headers for address and phone numbers. pgpmrXqf9Fzer.pgp Description: PGP signature
Re: cvs commit: src/sys/kern kern_malloc.c
On Fri, Mar 03, 2006 at 10:36:52PM +, Paul Saab wrote: > ps 2006-03-03 22:36:52 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_malloc.c > Log: > Fix bug in malloc_uninit(): > Releasing items from the mt_zone can not be done by a simple > uma_zfree() call since mt_zone is allocated with the UMA_ZONE_MALLOC > flag. Use uma_zfree_arg instead and supply the slab. > > This bug caused panics in low memory situations on unloading kernel > modules containing MALLOC_DEFINE(..) statements. > > Submitted by: ups > > Revision ChangesPath > 1.153 +3 -1 src/sys/kern/kern_malloc.c Could the bug be hiding in RELENG_6 as well? PR kern/94048 seems to be related to that. Thanks! Yar ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
cvs commit: ports/sysutils/fortunelock Makefile distinfo pkg-descr
pav 2006-03-06 22:46:17 UTC FreeBSD ports repository Modified files: sysutils/fortunelock Makefile distinfo pkg-descr Log: - Unbreak PR: ports/93280 Submitted by: Ion-Mihai "IOnut" Tetcu <[EMAIL PROTECTED]> Approved by:maintainer timeout (dannyboy; 3 weeks) Approved by:portmgr (krion) Revision ChangesPath 1.9 +1 -4 ports/sysutils/fortunelock/Makefile 1.3 +1 -0 ports/sysutils/fortunelock/distinfo 1.5 +0 -2 ports/sysutils/fortunelock/pkg-descr ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"