~ubuntu-branches/debian/sid/skksearch/sid

« back to all changes in this revision

Viewing changes to debian/patches/040_dic-bufsize.patch

  • Committer: Package Import Robot
  • Author(s): Tatsuya Kinoshita
  • Date: 2012-09-01 20:53:26 UTC
  • Revision ID: package-import@ubuntu.com-20120901205326-rmw3gwmmpn3tkx23
Tags: 0.0-21
* debian/rules: Revive the -Wall option for CFLAGS
* debian/control: Fix Vcs-Browser
* debian/patches/*: Revert the previous changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Description: Increase DIC_BUFSIZE to support long entries
2
 
Bug-Debian: http://bugs.debian.org/376855
3
 
Author: SATOH Fumiyasu <fumiya@samba.gr.jp>
4
 
 
5
 
Index: skksearch-0.0/dic.h
6
 
===================================================================
7
 
--- skksearch-0.0.orig/dic.h
8
 
+++ skksearch-0.0/dic.h
9
 
@@ -12,7 +12,7 @@
10
 
  * GNU General Public License for more details.
11
 
  */
12
 
 
13
 
-#define DIC_BUFSIZE 1024
14
 
+#define DIC_BUFSIZE 4096
15
 
 
16
 
 struct dic {
17
 
   char buf[DIC_BUFSIZE];