Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
net-tools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
net-tools
Commits
c5e8dfb6
Commit
c5e8dfb6
authored
Nov 20, 2011
by
Mike Frysinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix "format not a string literal" warnings
Signed-off-by:
Mike Frysinger
<
vapier@gentoo.org
>
parent
4d721ae0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
mii-tool.c
mii-tool.c
+1
-1
rarp.c
rarp.c
+1
-1
slattach.c
slattach.c
+1
-1
No files found.
mii-tool.c
View file @
c5e8dfb6
...
...
@@ -271,7 +271,7 @@ int show_basic_mii(int sock, int phy_id)
if
(
opt_watch
)
{
if
(
opt_log
)
{
syslog
(
LOG_INFO
,
buf
);
syslog
(
LOG_INFO
,
"%s"
,
buf
);
}
else
{
char
s
[
20
];
time_t
t
=
time
(
NULL
);
...
...
rarp.c
View file @
c5e8dfb6
...
...
@@ -226,7 +226,7 @@ int main(int argc, char **argv)
case
'h'
:
usage
();
case
'V'
:
fp
rintf
(
stderr
,
version_string
);
fp
uts
(
version_string
,
stderr
);
exit
(
E_VERSION
);
break
;
case
'v'
:
...
...
slattach.c
View file @
c5e8dfb6
...
...
@@ -569,7 +569,7 @@ usage(void)
"[-c cmd] [-s speed] [-p protocol] tty | -
\n
"
" slattach -V | --version
\n
"
;
fp
rintf
(
stderr
,
usage_msg
);
fp
uts
(
usage_msg
,
stderr
);
exit
(
1
);
}
...
...
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