aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/test_client_put_stop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/test_client_put_stop.c')
-rw-r--r--src/microhttpd/test_client_put_stop.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/microhttpd/test_client_put_stop.c b/src/microhttpd/test_client_put_stop.c
index b25cf667..cda8f1d1 100644
--- a/src/microhttpd/test_client_put_stop.c
+++ b/src/microhttpd/test_client_put_stop.c
@@ -935,9 +935,9 @@ _MHD_dumbClient_needs_process (const struct _MHD_dumbClient *clnt)
935 case DUMB_CLIENT_BODY_RECVEIVING: 935 case DUMB_CLIENT_BODY_RECVEIVING:
936 case DUMB_CLIENT_FINISHING: 936 case DUMB_CLIENT_FINISHING:
937 default: 937 default:
938 return 0; 938 break;
939 } 939 }
940 return 0; /* Should be unreachable */ 940 return 0;
941} 941}
942 942
943 943
@@ -1199,9 +1199,9 @@ term_reason_str (enum MHD_RequestTerminationCode term_code)
1199 case -1: 1199 case -1:
1200 return "(not called)"; 1200 return "(not called)";
1201 default: 1201 default:
1202 return "(unknown code)"; 1202 break;
1203 } 1203 }
1204 return "(problem)"; /* unreachable */ 1204 return "(unknown code)";
1205} 1205}
1206 1206
1207 1207