Skip to content

Commit

Permalink
Changed indent to tab instead of spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
jguillaumes committed Apr 21, 2023
1 parent be83056 commit c9ab522
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vde_cryptcab/vde_cryptcab_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ rcv_challenge(struct datagram *pkt, struct peer *p)
close (fd);
memset(keyname + strlen(keyname) - 10, 'X', 6);
#ifdef VDE_DARWIN
od = mkostemps(keyname, 4, O_EXLOCK);
od = mkostemps(keyname, 4, O_EXLOCK);
#else
od = mkostemps(keyname, 4, O_RDWR | O_CREAT | O_TRUNC);
od = mkostemps(keyname, 4, O_RDWR | O_CREAT | O_TRUNC);
#endif
if (od < 0){
perror ("chacha.key mktemp error");
Expand Down

0 comments on commit c9ab522

Please sign in to comment.