Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 26 Oct 2002 05:55:01 -0700
From:      walt <wa1ter@hotmail.com>
To:        freebsd-current@freebsd.org
Subject:   Re: -current buildworld breakage
Message-ID:  <3DBA90A5.90602@hotmail.com>
References:  <apdc9a$2s82$1@FreeBSD.csie.NCTU.edu.tw>

next in thread | previous in thread | raw e-mail | index | archive | help
Yamada Ken Takeshi wrote:

>   I have an error for a week and cannot make buildworld.
> Where can I find "panic" other than real panic?
> 
> ===> sbin/gbde
>  :  :  :  :
> cc -O -pipe -mcpu=pentiumpro -I/usr/src/sbin/gbde/../../sys   -Werror -Wall -Wno-format-y2k -Wno-uninitialized  -c template.c
> cc1: warnings being treated as errors
> /usr/src/sys/crypto/rijndael/rijndael-api-fst.c: In function `rijndael_padEncrypt':
> /usr/src/sys/crypto/rijndael/rijndael-api-fst.c:222: warning: implicit declaration of function `panic'
> *** Error code 1

This is taken from my rijndael-api-fst.c:

for (i = numBlocks; i > 0; i--) {
	rijndaelEncrypt(input, outBuffer, key->keySched, key->ROUNDS);
	input += 16;  /* this is line 222 */
	outBuffer += 1;
}

I can't see how line 222 includes an implicit declaration of 'panic'.

Is your file different?


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3DBA90A5.90602>