Skip to content

Commit 9d2dcd4

Browse files
author
root
committed
Running make clang-format
1 parent dc0b070 commit 9d2dcd4

File tree

1 file changed

+4
-4
lines changed
  • plugins/experimental/uri_signing

1 file changed

+4
-4
lines changed

plugins/experimental/uri_signing/parse.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ get_jws_from_uri(const char *uri, size_t uri_ct, const char *paramName)
4040
size_t termination_ct;
4141
size_t param_ct = strlen(paramName);
4242

43-
if (param_ct <= 0){
44-
PluginDebug("URI signing package name cannot be empty");
45-
return NULL;
43+
if (param_ct <= 0) {
44+
PluginDebug("URI signing package name cannot be empty");
45+
return NULL;
4646
}
4747

4848
if (strchr(reserved_string, paramName[param_ct - 1])) {
4949
termination_symbol = paramName[param_ct - 1];
5050
termination_ct = param_ct - 1;
5151
} else {
5252
termination_symbol = '=';
53-
termination_ct = param_ct;
53+
termination_ct = param_ct;
5454
}
5555

5656
PluginDebug("Parsing JWS from query string: %.*s", (int)uri_ct, uri);

0 commit comments

Comments
 (0)