~ubuntu-branches/ubuntu/raring/maradns/raring

« back to all changes in this revision

Viewing changes to update/1.4.07/maradns-2.0.03-angeld.patch

  • Committer: Package Import Robot
  • Author(s): Nicholas Bamber
  • Date: 2011-11-21 22:10:46 UTC
  • mfrom: (1.1.16) (10.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20111121221046-vtngcxq5dbywexin
Tags: 1.4.07-1
* Made watch file handle recursive lookups
* New upstream release (Closes: #607739)
* Added lintian override concerning DEP-5
* Added README.source concerning #643043
* Added patch updating upstream changelog
* Updated TODO.Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--- maradns-2.0.03/parse/Csv2_database.c        2011-08-05 06:59:48.000000000 -0500
 
2
+++ maradns-2.0.04/parse/Csv2_database.c        2011-10-05 18:23:59.012736913 -0500
 
3
@@ -1,4 +1,4 @@
 
4
-/* Copyright (c) 2004-2006 Sam Trenholme
 
5
+/* Copyright (c) 2004-2011 Sam Trenholme
 
6
  *
 
7
  * TERMS
 
8
  *
 
9
@@ -840,10 +840,10 @@
 
10
         }
 
11
         point = state->buffer;
 
12
 
 
13
-        /* We only allow 30 things in the buffer because it gets slower and
 
14
+        /* We only allow 64 things in the buffer because it gets slower and
 
15
          * slower to add things to the end */
 
16
         if(state->buffer != new) {
 
17
-                for(x = 0; x < 30 ; x++) {
 
18
+                for(x = 0; x < 64 ; x++) {
 
19
                         if(point->next == 0) {
 
20
                                 break;
 
21
                         }