aboutsummaryrefslogtreecommitdiff
path: root/src/arm/gnunet-arm.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-03-08 18:54:17 +0100
committerChristian Grothoff <christian@grothoff.org>2017-03-08 18:54:17 +0100
commit95646a7b495153841c53034abca516c9261b2fb7 (patch)
tree51c379f187456ac2e5fb23a9c6098b89e384ca74 /src/arm/gnunet-arm.c
parentbaffe75109684b28fbf814582984cc780ca93951 (diff)
downloadgnunet-95646a7b495153841c53034abca516c9261b2fb7.tar.gz
gnunet-95646a7b495153841c53034abca516c9261b2fb7.zip
remove dead enum values
Diffstat (limited to 'src/arm/gnunet-arm.c')
-rw-r--r--src/arm/gnunet-arm.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/arm/gnunet-arm.c b/src/arm/gnunet-arm.c
index 3c52137bc..49886eb56 100644
--- a/src/arm/gnunet-arm.c
+++ b/src/arm/gnunet-arm.c
@@ -220,14 +220,8 @@ req_string (enum GNUNET_ARM_RequestStatus rs)
220 { 220 {
221 case GNUNET_ARM_REQUEST_SENT_OK: 221 case GNUNET_ARM_REQUEST_SENT_OK:
222 return _("Message was sent successfully"); 222 return _("Message was sent successfully");
223 case GNUNET_ARM_REQUEST_CONFIGURATION_ERROR:
224 return _("Misconfiguration (can not connect to the ARM service)");
225 case GNUNET_ARM_REQUEST_DISCONNECTED: 223 case GNUNET_ARM_REQUEST_DISCONNECTED:
226 return _("We disconnected from ARM before we could send a request"); 224 return _("We disconnected from ARM before we could send a request");
227 case GNUNET_ARM_REQUEST_BUSY:
228 return _("ARM API is busy");
229 case GNUNET_ARM_REQUEST_TIMEOUT:
230 return _("Request timed out");
231 } 225 }
232 return _("Unknown request status"); 226 return _("Unknown request status");
233} 227}
@@ -263,7 +257,7 @@ ret_string (enum GNUNET_ARM_Result result)
263 case GNUNET_ARM_RESULT_START_FAILED: 257 case GNUNET_ARM_RESULT_START_FAILED:
264 return _("service failed to start"); 258 return _("service failed to start");
265 case GNUNET_ARM_RESULT_IN_SHUTDOWN: 259 case GNUNET_ARM_RESULT_IN_SHUTDOWN:
266 return _("service cannot be started because ARM is shutting down"); 260 return _("service cannot be manipulated because ARM is shutting down");
267 } 261 }
268 return _("Unknown result code."); 262 return _("Unknown result code.");
269} 263}