Skip to content

Commit

Permalink
fix: add plugin character in dl.c (ElektraInitiative#3486)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmakar committed May 9, 2023
1 parent 4a88163 commit 1fb78de
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/libs/loader/dl.c
Expand Up @@ -73,6 +73,7 @@ elektraPluginFactory elektraModulesLoad (KeySet * modules, const char * name, Ke
char * moduleName = elektraMalloc (sizeof ("libelektra-") + strlen (name) + sizeof (elektraPluginPostfix) + 1);

strcpy (moduleName, "libelektra-");
strcat (moduleName, "-plugin-");
strcat (moduleName, name);
strcat (moduleName, elektraPluginPostfix);

Expand Down

0 comments on commit 1fb78de

Please sign in to comment.