- Adapted indenation to new agreed upon system
This commit is contained in:
@@ -89,21 +89,23 @@
|
||||
/*
|
||||
** FailInet: Some network failure has occurred.
|
||||
*/
|
||||
void FailInet (char *text) {
|
||||
void FailInet(char *text)
|
||||
{
|
||||
/* ========
|
||||
** Output the given text and exit the process.
|
||||
*/
|
||||
int my_errno, my_vaxc_errno;
|
||||
int my_errno, my_vaxc_errno;
|
||||
|
||||
GetErrno (&my_errno, &my_vaxc_errno);
|
||||
printf ("### Internet Error ###\n");
|
||||
GetErrno(&my_errno, &my_vaxc_errno);
|
||||
printf("### Internet Error ###\n");
|
||||
#ifdef __VMS
|
||||
printf (" ### errno = %d.\n", my_errno);
|
||||
printf (" ### vaxc$errno = %d.\n", my_vaxc_errno);
|
||||
printf(" ### errno = %d.\n", my_errno);
|
||||
printf(" ### vaxc$errno = %d.\n", my_vaxc_errno);
|
||||
#else
|
||||
printf (" ### errno = %d.\n", my_errno);
|
||||
printf(" ### errno = %d.\n", my_errno);
|
||||
#endif
|
||||
perror (text);
|
||||
exit (EXIT_FAILURE);
|
||||
}
|
||||
perror(text);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
/*------------------------------------------------- End of FAILINET.C =======*/
|
||||
|
||||
Reference in New Issue
Block a user