suggest alternative in ld warn message
authorderaadt <deraadt@openbsd.org>
Sat, 28 Dec 1996 02:30:58 +0000 (02:30 +0000)
committerderaadt <deraadt@openbsd.org>
Sat, 28 Dec 1996 02:30:58 +0000 (02:30 +0000)
lib/libc/stdio/gets.c

index 1eba860..1cc13d4 100644 (file)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: gets.c,v 1.2 1996/08/19 08:32:52 tholo Exp $";
+static char rcsid[] = "$OpenBSD: gets.c,v 1.3 1996/12/28 02:30:58 deraadt Exp $";
 #endif /* LIBC_SCCS and not lint */
 
 #include <stdio.h>
 
-__warn_references(gets, "warning: this program uses gets(), which is unsafe.");
+__warn_references(gets,
+    "warning: gets() is very unsafe; consider using fgets()");
 
 char *
 gets(buf)