summaryrefslogtreecommitdiff
path: root/net-im/climm/files/patch-ad
diff options
context:
space:
mode:
Diffstat (limited to 'net-im/climm/files/patch-ad')
-rw-r--r--net-im/climm/files/patch-ad20
1 files changed, 0 insertions, 20 deletions
diff --git a/net-im/climm/files/patch-ad b/net-im/climm/files/patch-ad
deleted file mode 100644
index f4e5d68cd184..000000000000
--- a/net-im/climm/files/patch-ad
+++ /dev/null
@@ -1,20 +0,0 @@
---- util_ui.c.orig Tue Jan 23 11:49:05 2001
-+++ util_ui.c Wed Jan 24 22:09:24 2001
-@@ -102,7 +102,7 @@
- assert( 2048 >= strlen( str ) );
-
- va_start( args, str );
-- vsprintf( buf, str, args );
-+ vsnprintf( buf, sizeof(buf), str, args );
- k = write( fd, buf, strlen( buf ) );
- if ( k != strlen( buf ) )
- {
-@@ -292,7 +292,7 @@
-
- va_start( args, str );
- #ifndef CURSES_UI
-- vsprintf( buf, str, args );
-+ vsnprintf( buf, sizeof(buf), str, args );
- str2 = buf;
- while ( (void *) NULL != ( str1 = strchr( str2, '\x1b' ) ) )
- {