style(9) fixes, including the removal of page break characters. No functional
changes. Approved by: gibbs (co-mentor)
This commit is contained in:
parent
9a0aea4625
commit
0285e9b1cf
@ -197,7 +197,7 @@ my_system(const char *command)
|
||||
sigset_t newsigblock, oldsigblock;
|
||||
|
||||
if (!command) /* just checking... */
|
||||
return(1);
|
||||
return (1);
|
||||
|
||||
/*
|
||||
* Ignore SIGINT and SIGQUIT, block SIGCHLD. Remember to save
|
||||
@ -285,7 +285,7 @@ match::do_match(config &c)
|
||||
if (_inv == 1)
|
||||
retval = (retval == 0) ? 1 : 0;
|
||||
|
||||
return retval;
|
||||
return (retval);
|
||||
}
|
||||
|
||||
#include <sys/sockio.h>
|
||||
@ -354,7 +354,7 @@ media::do_match(config &c)
|
||||
close(s);
|
||||
}
|
||||
|
||||
return retval;
|
||||
return (retval);
|
||||
}
|
||||
|
||||
const string var_list::bogus = "_$_$_$_$_B_O_G_U_S_$_$_$_$_";
|
||||
@ -749,7 +749,7 @@ config::find_and_execute(char type)
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
static void
|
||||
process_event(char *buffer)
|
||||
{
|
||||
@ -1005,7 +1005,7 @@ event_loop(void)
|
||||
}
|
||||
close(fd);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* functions that the parser uses.
|
||||
*/
|
||||
@ -1090,7 +1090,7 @@ set_variable(const char *var, const char *val)
|
||||
free(const_cast<char *>(val));
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
static void
|
||||
gensighand(int)
|
||||
|
Loading…
x
Reference in New Issue
Block a user