projects
/
openvswitch
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d3a064
)
Fix call from vfprintf to fprintf, which could cause seg faults.
author
Justin Pettit
<jpettit@nicira.com>
Wed, 16 Apr 2008 23:49:42 +0000
(16:49 -0700)
committer
Justin Pettit
<jpettit@nicira.com>
Wed, 16 Apr 2008 23:49:42 +0000
(16:49 -0700)
utilities/dpctl.c
patch
|
blob
|
history
diff --git
a/utilities/dpctl.c
b/utilities/dpctl.c
index a3a2c9bdea11e8a4bb5c54afd253ce6a9ea5c1e6..d79bf00cfb0238102d086b4eb7e4d83aa07271c5 100644
(file)
--- a/
utilities/dpctl.c
+++ b/
utilities/dpctl.c
@@
-197,7
+197,7
@@
static void run(int retval, const char *message, ...)
if (retval == EOF) {
fputs(": unexpected end of file\n", stderr);
} else {
-
v
fprintf(stderr, ": %s\n", strerror(retval));
+ fprintf(stderr, ": %s\n", strerror(retval));
}
exit(EXIT_FAILURE);