Fix some formatting
This commit is contained in:
parent
ed3ef50c23
commit
90ca2848fd
@ -2,6 +2,7 @@
|
|||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
@ -15,8 +16,6 @@
|
|||||||
#include "messages.c"
|
#include "messages.c"
|
||||||
|
|
||||||
static int been_there_done_that = 0;
|
static int been_there_done_that = 0;
|
||||||
|
|
||||||
|
|
||||||
const char *applet_name;
|
const char *applet_name;
|
||||||
|
|
||||||
#ifdef BB_FEATURE_INSTALLER
|
#ifdef BB_FEATURE_INSTALLER
|
||||||
@ -70,12 +69,12 @@ static void install_links(const char *busybox, int use_symbolic_links)
|
|||||||
int i;
|
int i;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
if (use_symbolic_links) Link = symlink;
|
if (use_symbolic_links)
|
||||||
|
Link = symlink;
|
||||||
|
|
||||||
for (i = 0; applets[i].name != NULL; i++) {
|
for (i = 0; applets[i].name != NULL; i++) {
|
||||||
sprintf ( command, "%s/%s",
|
sprintf ( command, "%s/%s",
|
||||||
install_dir[applets[i].location],
|
install_dir[applets[i].location], applets[i].name);
|
||||||
applets[i].name);
|
|
||||||
rc = Link(busybox, command);
|
rc = Link(busybox, command);
|
||||||
|
|
||||||
if (rc) {
|
if (rc) {
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
@ -15,8 +16,6 @@
|
|||||||
#include "messages.c"
|
#include "messages.c"
|
||||||
|
|
||||||
static int been_there_done_that = 0;
|
static int been_there_done_that = 0;
|
||||||
|
|
||||||
|
|
||||||
const char *applet_name;
|
const char *applet_name;
|
||||||
|
|
||||||
#ifdef BB_FEATURE_INSTALLER
|
#ifdef BB_FEATURE_INSTALLER
|
||||||
@ -70,12 +69,12 @@ static void install_links(const char *busybox, int use_symbolic_links)
|
|||||||
int i;
|
int i;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
if (use_symbolic_links) Link = symlink;
|
if (use_symbolic_links)
|
||||||
|
Link = symlink;
|
||||||
|
|
||||||
for (i = 0; applets[i].name != NULL; i++) {
|
for (i = 0; applets[i].name != NULL; i++) {
|
||||||
sprintf ( command, "%s/%s",
|
sprintf ( command, "%s/%s",
|
||||||
install_dir[applets[i].location],
|
install_dir[applets[i].location], applets[i].name);
|
||||||
applets[i].name);
|
|
||||||
rc = Link(busybox, command);
|
rc = Link(busybox, command);
|
||||||
|
|
||||||
if (rc) {
|
if (rc) {
|
||||||
|
Loading…
Reference in New Issue
Block a user