Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Magisk
Commits
17e395c2
Commit
17e395c2
authored
Mar 15, 2017
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup and hide debug msg
parent
d50c1f39
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3610 deletions
+2
-3610
shell.c
sqlite3/shell.c
+0
-3163
sqlite3ext.h
sqlite3/sqlite3ext.h
+0
-447
su.c
su.c
+2
-0
No files found.
sqlite3/shell.c
deleted
100644 → 0
View file @
d50c1f39
This diff is collapsed.
Click to expand it.
sqlite3/sqlite3ext.h
deleted
100644 → 0
View file @
d50c1f39
This diff is collapsed.
Click to expand it.
su.c
View file @
17e395c2
...
@@ -125,6 +125,7 @@ void exec_logw(const char* fmt, ...) {
...
@@ -125,6 +125,7 @@ void exec_logw(const char* fmt, ...) {
}
}
void
exec_logd
(
const
char
*
fmt
,
...)
{
void
exec_logd
(
const
char
*
fmt
,
...)
{
#ifdef DEBUG
va_list
args
;
va_list
args
;
char
logline
[
PATH_MAX
];
char
logline
[
PATH_MAX
];
...
@@ -132,6 +133,7 @@ void exec_logd(const char* fmt, ...) {
...
@@ -132,6 +133,7 @@ void exec_logd(const char* fmt, ...) {
vsnprintf
(
logline
,
PATH_MAX
,
fmt
,
args
);
vsnprintf
(
logline
,
PATH_MAX
,
fmt
,
args
);
va_end
(
args
);
va_end
(
args
);
exec_log
(
"d"
,
logline
);
exec_log
(
"d"
,
logline
);
#endif
}
}
static
int
from_init
(
struct
su_initiator
*
from
)
{
static
int
from_init
(
struct
su_initiator
*
from
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment