From: Arran Cudbard-Bell Date: Sat, 24 Nov 2018 17:21:17 +0000 (+0000) Subject: Fix const order X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47abfa49d96b01e6fa640e68d2d777efdfe57e41;p=thirdparty%2Ffreeradius-server.git Fix const order --- diff --git a/src/bin/radsnmp.c b/src/bin/radsnmp.c index 3b23274c589..ebf9b0410c3 100644 --- a/src/bin/radsnmp.c +++ b/src/bin/radsnmp.c @@ -61,7 +61,7 @@ typedef enum { RADSNMP_EXIT //!< Terminate gracefully. } radsnmp_command_t; -static const FR_NAME_NUMBER radsnmp_command_str[] = { +static FR_NAME_NUMBER const radsnmp_command_str[] = { { "PING", RADSNMP_PING }, //!< Liveness command from Net-SNMP { "get", RADSNMP_GET }, //!< Get the value of an OID. { "getnext", RADSNMP_GETNEXT }, //!< Get the next OID in the tree.