diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2013-06-13 15:51:17 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2013-06-13 15:51:17 +0200 |
commit | b6cb72afcf877e6b1ac062ca17e0be01c963cce7 (patch) | |
tree | e4b44ea1c8e2c2d5752c8a581d9dcabf81bef555 | |
parent | e9b6480fc5c15c131339a1f34ed18cb57a9f281c (diff) |
oui: minor: Fix comments
Make comments related to skipping of lines a bit clearer.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r-- | oui.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -55,11 +55,12 @@ void dissector_init_oui(void) v = xmalloc(sizeof(*v)); v->id = strtol(ptr, &end, 0); - /* No valid line, skip */ + /* not a valid line, skip */ if (v->id == 0 && end == ptr) continue; ptr = strstr(buff, ", "); + /* likewise */ if (!ptr) continue; |