aboutsummaryrefslogtreecommitdiff
path: root/net-im/icb/files/patch-icb__c_hush.c
diff options
context:
space:
mode:
Diffstat (limited to 'net-im/icb/files/patch-icb__c_hush.c')
-rw-r--r--net-im/icb/files/patch-icb__c_hush.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/net-im/icb/files/patch-icb__c_hush.c b/net-im/icb/files/patch-icb__c_hush.c
new file mode 100644
index 000000000000..958c0ccbd666
--- /dev/null
+++ b/net-im/icb/files/patch-icb__c_hush.c
@@ -0,0 +1,29 @@
+--- icb/c_hush.c.orig
++++ icb/c_hush.c
+@@ -23,7 +23,7 @@
+ while (*nick == ' ' || *nick == '\t') nick++;
+
+ if (*nick == '\0') {
+- strcpy(TRET, "c_hush: can't hush a null nickname");
++ strcpy(Tcl_GetStringResult(interp), "c_hush: can't hush a null nickname");
+ return(-1);
+ }
+
+@@ -31,7 +31,7 @@
+ *(nick + MAX_NICKLEN) = '\0';
+
+ if ((hp = strmakenode(strlen(nick))) == NULL) {
+- strcpy(TRET, "c_hush: out of memory");
++ strcpy(Tcl_GetStringResult(interp), "c_hush: out of memory");
+ return(-1);
+ }
+ strcpy(hp->str, nick);
+@@ -55,7 +55,7 @@
+ STRLIST *s;
+
+ if ((s = strgetnode(nick, hushhead, 1)) == NULL) {
+- sprintf(TRET, "c_hush: %s is not being hushed", nick);
++ sprintf(Tcl_GetStringResult(interp), "c_hush: %s is not being hushed", nick);
+ return(-1);
+ }
+ sprintf(mbuf,