mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Address our users in a civilized manner. (They may know better, but probably
just forgot it, it is certainly no reason to don't insult them.)
This commit is contained in:
parent
0af0a4b0f4
commit
057cfd176a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=44936
1 changed files with 5 additions and 11 deletions
|
@ -25,7 +25,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: devstat.c,v 1.3 1998/09/20 00:11:09 ken Exp $
|
||||
* $Id: devstat.c,v 1.4 1998/10/14 23:28:26 ken Exp $
|
||||
*/
|
||||
|
||||
#include <sys/types.h>
|
||||
|
@ -200,18 +200,12 @@ checkversion(void)
|
|||
|
||||
if (version < DEVSTAT_VERSION)
|
||||
snprintf(tmpstr, sizeof(tmpstr),
|
||||
"%s: you really should know better"
|
||||
" than to upgrade your\n%s: "
|
||||
"userland binaries without "
|
||||
"upgrading your kernel",
|
||||
func_name, func_name);
|
||||
"%s: libdevstat newer than kernel\n",
|
||||
func_name);
|
||||
else
|
||||
snprintf(tmpstr, sizeof(tmpstr),
|
||||
"%s: you really should know better"
|
||||
" than to upgrade your kernel "
|
||||
"without\n%s: upgrading your "
|
||||
"userland binaries",
|
||||
func_name, func_name);
|
||||
"%s: kernel newer than libdevstat\n",
|
||||
func_name);
|
||||
|
||||
strncat(devstat_errbuf, tmpstr,
|
||||
DEVSTAT_ERRBUF_SIZE - buflen - 1);
|
||||
|
|
Loading…
Reference in a new issue