Re: svn commit: r337426 - head/sbin/ifconfig

2018-08-10 Thread Ian Lepore
On Fri, 2018-08-10 at 14:44 -0400, Mark Johnston wrote: > On Fri, Aug 10, 2018 at 10:25:50AM +1000, Bruce Evans wrote: > > > > On Tue, 7 Aug 2018, Mark Johnston wrote: > > > > > > > > Log: > > >  ifconfig: Fix use of _Noreturn. > > > > > >  The _Noreturn is a function-specifier (like inline) wh

Re: svn commit: r337426 - head/sbin/ifconfig

2018-08-10 Thread Mark Johnston
On Fri, Aug 10, 2018 at 10:25:50AM +1000, Bruce Evans wrote: > On Tue, 7 Aug 2018, Mark Johnston wrote: > > > Log: > > ifconfig: Fix use of _Noreturn. > > > > The _Noreturn is a function-specifier (like inline) which must preceed > > the declarator. > > > > Submitted by: Sebastian Huber

Re: svn commit: r337426 - head/sbin/ifconfig

2018-08-09 Thread Bruce Evans
On Tue, 7 Aug 2018, Mark Johnston wrote: Log: ifconfig: Fix use of _Noreturn. The _Noreturn is a function-specifier (like inline) which must preceed the declarator. Submitted by: Sebastian Huber MFC after: 1 week _Noreturn is even more broken than I knew. It should never be used.

svn commit: r337426 - head/sbin/ifconfig

2018-08-07 Thread Mark Johnston
Author: markj Date: Tue Aug 7 17:25:38 2018 New Revision: 337426 URL: https://svnweb.freebsd.org/changeset/base/337426 Log: ifconfig: Fix use of _Noreturn. The _Noreturn is a function-specifier (like inline) which must preceed the declarator. Submitted by: Sebastian Huber MFC aft