diff options
author | William Wilgus <wilgus.william@gmail.com> | 2021-03-06 12:57:31 -0500 |
---|---|---|
committer | William Wilgus <me.theuser@yahoo.com> | 2021-03-06 18:00:18 +0000 |
commit | 308dd4ffee5455c70bd801704c1662c654881255 (patch) | |
tree | c990e080fd43c889644acb49c525fa202be3dd4c /apps | |
parent | 87ad55b06e094fc3386f54319d6eba3ea1387e43 (diff) |
Open_plugins.c fix red
rb->strncasecmp
Change-Id: Icb1e6d0db42bd4708d581e80596604fb97578761
Diffstat (limited to 'apps')
-rw-r--r-- | apps/plugins/open_plugins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/open_plugins.c b/apps/plugins/open_plugins.c index 6f3295f8e3..0e636a7097 100644 --- a/apps/plugins/open_plugins.c +++ b/apps/plugins/open_plugins.c @@ -758,7 +758,7 @@ reopen_datfile: while (path[0] == ' ') path++; - if (strncasecmp(path, "-add", 4) == 0) + if (rb->strncasecmp(path, "-add", 4) == 0) { parameter = NULL; op_entry_browse_add(-1); |