Get rid of openbsc leftover references

Get rid of the global variable since it's only used once inside a
function anyway.

Change-Id: I0b4f536b16f3693ef16de8505036943c3a30b1df
This commit is contained in:
Pau Espin 2023-01-31 12:21:30 +01:00
parent 32266a9ad3
commit dd9b80d60b
2 changed files with 12 additions and 18 deletions

View File

@ -64,14 +64,6 @@ int (*l23_app_work)(void) = NULL;
int (*l23_app_exit)(void) = NULL;
int quit = 0;
const char *openbsc_copyright =
"%s"
"%s\n"
"License GPLv2+: GNU GPL version 2 or later "
"<http://gnu.org/licenses/gpl.html>\n"
"This is free software: you are free to change and redistribute it.\n"
"There is NO WARRANTY, to the extent permitted by law.\n\n";
static void print_usage(const char *app)
{
printf("Usage: %s\n", app);
@ -210,7 +202,12 @@ static void print_copyright(void)
{
struct l23_app_info *app;
app = l23_app_info();
printf(openbsc_copyright,
printf("%s"
"%s\n"
"License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>\n"
"This is free software: you are free to change and redistribute it.\n"
"There is NO WARRANTY, to the extent permitted by law.\n\n",
app && app->copyright ? app->copyright : "",
app && app->contribution ? app->contribution : "");
}

View File

@ -74,14 +74,6 @@ int mobile_exit(struct osmocom_ms *ms, int force);
const char *debug_default =
"DCS:DNB:DPLMN:DRR:DMM:DSIM:DCC:DMNCC:DSS:DLSMS:DPAG:DSUM:DSAP:DGPS:DMOB:DPRIM:DLUA:DGAPK";
const char *openbsc_copyright =
"%s"
"%s\n"
"License GPLv2+: GNU GPL version 2 or later "
"<http://gnu.org/licenses/gpl.html>\n"
"This is free software: you are free to change and redistribute it.\n"
"There is NO WARRANTY, to the extent permitted by law.\n\n";
static void print_usage(const char *app)
{
printf("Usage: %s\n", app);
@ -216,7 +208,12 @@ static void print_copyright(void)
{
struct l23_app_info *app;
app = l23_app_info();
printf(openbsc_copyright,
printf("%s"
"%s\n"
"License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>\n"
"This is free software: you are free to change and redistribute it.\n"
"There is NO WARRANTY, to the extent permitted by law.\n\n",
app && app->copyright ? app->copyright : "",
app && app->contribution ? app->contribution : "");
}