summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--axconfig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/axconfig.c b/axconfig.c
index 8a2f8b2..396c780 100644
--- a/axconfig.c
+++ b/axconfig.c
@@ -283,12 +283,12 @@ static char *proc_get_iface_name(char *line) {
char *p;
if (!(p = strchr(line, ':')))
- return 0; // should never hapen
+ return 0;
*p = 0;
while (*line && isspace(*line & 0xff))
line++;
if (!*line)
- return 0; // should never hapen
+ return 0;
return line;
}
#endif