$NetBSD: patch-ac,v 1.1 2008/05/26 17:22:37 hira Exp $

--- plugins/ini.c.orig	2008-05-26 17:10:50.000000000 +0900
+++ plugins/ini.c	2008-05-26 17:12:01.000000000 +0900
@@ -377,7 +377,7 @@
     if (*optionName)
     {
        strncpy (*optionName, line, length);
-       *optionName[length] = 0;
+       (*optionName)[length] = 0;
     }
     splitPos++;
     optionLength = strlen (splitPos);
@@ -387,7 +387,7 @@
     if (*optionValue)
     {
       strncpy (*optionValue, splitPos, optionLength);
-      *optionValue[optionLength] = 0;
+      (*optionValue)[optionLength] = 0;
     }
     return TRUE;
 }
