summaryrefslogtreecommitdiff
path: root/ot_accesslist.c
diff options
context:
space:
mode:
Diffstat (limited to 'ot_accesslist.c')
-rw-r--r--ot_accesslist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ot_accesslist.c b/ot_accesslist.c
index 3154e7f..a3a2049 100644
--- a/ot_accesslist.c
+++ b/ot_accesslist.c
@@ -321,7 +321,7 @@ int accesslist_blessip( ot_ip6 ip, ot_permissions permissions ) {
321 if( permissions & OT_PERMISSION_MAY_PROXY ) off += snprintf( _debug+off, 512-off, " may_proxy" ); 321 if( permissions & OT_PERMISSION_MAY_PROXY ) off += snprintf( _debug+off, 512-off, " may_proxy" );
322 if( !permissions ) off += snprintf( _debug+off, sizeof(_debug)-off, " nothing\n" ); 322 if( !permissions ) off += snprintf( _debug+off, sizeof(_debug)-off, " nothing\n" );
323 _debug[off++] = '.'; 323 _debug[off++] = '.';
324 write( 2, _debug, off ); 324 (void)write( 2, _debug, off );
325 } 325 }
326#endif 326#endif
327 327