mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-10 04:50:03 -04:00
35 lines
693 B
Plaintext
35 lines
693 B
Plaintext
$NetBSD: patch-bt,v 1.2 2013/01/11 13:24:32 joerg Exp $
|
|
|
|
--- icb/s_person.c.orig 1995-02-24 21:20:28.000000000 +0000
|
|
+++ icb/s_person.c
|
|
@@ -77,10 +77,7 @@ TARGDEFS
|
|
}
|
|
|
|
|
|
-sendpersonal(nick, text, echoflag)
|
|
-char *nick;
|
|
-char *text;
|
|
-int echoflag;
|
|
+void sendpersonal(char *nick, char *text, int echoflag)
|
|
{
|
|
char *buf;
|
|
int pl_flags;
|
|
@@ -106,7 +103,7 @@ int echoflag;
|
|
{
|
|
do
|
|
{
|
|
- text = getline(">> ",0);
|
|
+ text = get_line(">> ",0);
|
|
|
|
if (!text || (!*text && !last_command_was_kill))
|
|
{
|
|
@@ -124,7 +121,7 @@ int echoflag;
|
|
if (!buf)
|
|
{
|
|
putl("[=Error=] No memory to build packet",PL_SCR);
|
|
- return 0;
|
|
+ return;
|
|
}
|
|
|
|
sprintf(buf,"%cm %s %s", gv.cmdchar, nick, text);
|