Skip to content

Commit

Permalink
fix: remove double dash in plugin name (ElektraInitiative#3486)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmakar committed May 3, 2023
1 parent 5399ac4 commit af417ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/loader/dl.c
Expand Up @@ -73,7 +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, "plugin-");
strcat (moduleName, name);
strcat (moduleName, elektraPluginPostfix);

Expand Down

0 comments on commit af417ea

Please sign in to comment.