Skip to content

Commit

Permalink
Addressed Vijay's comments, fixed string headers
Browse files Browse the repository at this point in the history
  • Loading branch information
mhaidrygoog committed Feb 27, 2020
1 parent 4c5ee10 commit 88b0d84
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
3 changes: 1 addition & 2 deletions include/grpc/grpc_security.h
Expand Up @@ -426,8 +426,7 @@ typedef struct {
const char** error_details);

/** Implements debug string of the given plugin. This method returns an
* allocated string that the caller needs to free using gpr_free()
* */
* allocated string that the caller needs to free using gpr_free() */
char* (*debug_string)(void* state);

/** Destroys the plugin state. */
Expand Down
2 changes: 1 addition & 1 deletion src/core/lib/security/credentials/iam/iam_credentials.h
Expand Up @@ -21,7 +21,7 @@

#include <grpc/support/port_platform.h>

#include <string.h>
#include <string>

#include "src/core/lib/security/credentials/credentials.h"

Expand Down
1 change: 1 addition & 0 deletions src/core/lib/security/credentials/jwt/jwt_credentials.cc
Expand Up @@ -21,6 +21,7 @@
#include "src/core/lib/security/credentials/jwt/jwt_credentials.h"

#include <inttypes.h>
#include <string.h>

#include "src/core/lib/gprpp/ref_counted.h"
#include "src/core/lib/gprpp/ref_counted_ptr.h"
Expand Down
2 changes: 1 addition & 1 deletion src/core/lib/security/credentials/jwt/jwt_credentials.h
Expand Up @@ -21,7 +21,7 @@

#include <grpc/support/port_platform.h>

#include <string.h>
#include <string>

#include <grpc/support/time.h>

Expand Down
Expand Up @@ -21,6 +21,8 @@
#include "src/core/lib/json/json.h"
#include "src/core/lib/security/credentials/oauth2/oauth2_credentials.h"

#include <string.h>

#include <grpc/grpc_security.h>
#include <grpc/impl/codegen/slice.h>
#include <grpc/slice.h>
Expand Down
Expand Up @@ -21,7 +21,7 @@

#include <grpc/support/port_platform.h>

#include <string.h>
#include <string>

#include <grpc/grpc_security.h>
#include "src/core/lib/json/json.h"
Expand Down

0 comments on commit 88b0d84

Please sign in to comment.