Changed names of functions in utility.c and all affected files, to make
compliant with the style guide. Everybody rebuild your tags file!
diff --git a/busybox.c b/busybox.c
index 857367b..212d467 100644
--- a/busybox.c
+++ b/busybox.c
@@ -54,7 +54,7 @@
if (len != -1) {
path[len] = 0;
} else {
- errorMsg("%s: %s\n", proc, strerror(errno));
+ error_msg("%s: %s\n", proc, strerror(errno));
return NULL;
}
return strdup(path);
@@ -78,7 +78,7 @@
rc = Link(busybox, command);
if (rc) {
- errorMsg("%s: %s\n", command, strerror(errno));
+ error_msg("%s: %s\n", command, strerror(errno));
}
}
}