Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/2.3' into main
Browse files Browse the repository at this point in the history
daschuer committed Jan 10, 2023
2 parents 2095e1b + af02d52 commit cce89d0
Showing 6 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -435,7 +435,7 @@ jobs:
- name: "Upload GitHub Actions artifacts"
if: matrix.artifacts_path != null
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: ${{ matrix.artifacts_name }}
path: ${{ matrix.artifacts_path }}
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@ jobs:

- name: "Upload patch artifact"
if: failure() && env.UPLOAD_PATCH_FILE != null
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: ${{ env.UPLOAD_PATCH_FILE }}
path: ${{ env.UPLOAD_PATCH_FILE }}
3 changes: 3 additions & 0 deletions lib/libshout-idjc/src/common/httpp/encoding.c
Original file line number Diff line number Diff line change
@@ -28,6 +28,9 @@

#include <sys/types.h>
#include <string.h>
#ifndef _MSC_VER
#include <strings.h>
#endif
#include <stdlib.h>
#include <stdio.h>

3 changes: 3 additions & 0 deletions lib/libshout-idjc/src/common/httpp/httpp.c
Original file line number Diff line number Diff line change
@@ -33,6 +33,9 @@

#include <stdlib.h>
#include <string.h>
#ifndef _MSC_VER
#include <strings.h>
#endif
#include <ctype.h>

#include <avl/avl.h>
3 changes: 3 additions & 0 deletions lib/libshout-idjc/src/proto_http.c
Original file line number Diff line number Diff line change
@@ -28,6 +28,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef _MSC_VER
#include <strings.h>
#endif

#include <shoutidjc/shout.h>
#include "shout_private.h"
3 changes: 3 additions & 0 deletions lib/libshout-idjc/src/shout.c
Original file line number Diff line number Diff line change
@@ -29,6 +29,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef _MSC_VER
#include <strings.h>
#endif
#include <errno.h>

#include <shoutidjc/shout.h>

0 comments on commit cce89d0

Please sign in to comment.