From eec8fdc5552d9b34255124f03eb88e30ba6488f2 Mon Sep 17 00:00:00 2001 From: lamentxu <1372449351@qq.com> Date: Wed, 25 Mar 2026 21:57:24 +0800 Subject: [PATCH] fix typo --- ext/dba/libinifile/inifile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/dba/libinifile/inifile.c b/ext/dba/libinifile/inifile.c index c5467396d4bfe..6221c7f7a6e71 100644 --- a/ext/dba/libinifile/inifile.c +++ b/ext/dba/libinifile/inifile.c @@ -249,7 +249,7 @@ val_type inifile_fetch(inifile *dba, const key_type *key, int skip) { ln.key.group = estrdup(dba->next.key.group); } else { /* specific instance or not same key -> restart search */ - /* the slow way: restart and seacrch */ + /* the slow way: restart and search */ php_stream_rewind(dba->fp); inifile_line_free(&dba->next); } @@ -471,7 +471,7 @@ static int inifile_delete_replace_append(inifile *dba, const key_type *key, cons * 8) Append temporary stream */ - assert(!append || (key->name && value)); /* missuse */ + assert(!append || (key->name && value)); /* misuse */ /* 1 - 3 */ inifile_find_group(dba, key, &pos_grp_start);