diff options
| author | Roy Marples <roy@marples.name> | 2012-02-03 00:02:03 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2012-02-03 00:02:03 +0000 |
| commit | 8aa2252b741a619f05cb85da921b13162392a707 (patch) | |
| tree | 215665f9a1ac548f73d94e85f374f653de02c9ae | |
| parent | dfc47e828029547ed28521da446cae18946477e7 (diff) | |
| download | dhcpcd-8aa2252b741a619f05cb85da921b13162392a707.tar.xz | |
Fix a compile issue and releae dhcpcd-5.5.3dhcpcd-5.5.3
| -rw-r--r-- | defs.h | 2 | ||||
| -rw-r--r-- | ipv6rs.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -28,7 +28,7 @@ #define CONFIG_H #define PACKAGE "dhcpcd" -#define VERSION "5.5.2" +#define VERSION "5.5.3" #ifndef CONFIG # define CONFIG SYSCONFDIR "/" PACKAGE ".conf" @@ -665,7 +665,7 @@ ipv6rs_expire(void *arg) if (!timerisset(&next) || timercmp(&next, <, >)) next = lt; - for (rao = rap->options; + for (rao = rap->options, raol = NULL; rao && (raon = rao->next); raol = rao, rao = raon) { |
