Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions client-src/runtar.c

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These changes LGTM

Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ main(
{
#ifdef GNUTAR
int i;
char **j;
const char **j;
char *e;
char *dbf;
char *cmdline;
Expand Down Expand Up @@ -255,7 +255,7 @@ check_whitelist(
gchar* option)
{
bool result = TRUE;
char** i;
const char** i;

for(i=whitelisted_args; *i; i++) {
if (g_str_has_prefix(option, *i)) {
Expand Down
2 changes: 1 addition & 1 deletion config/amanda/ipv6.m4

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this has already been reviewed as a part of #220

Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ AC_DEFUN([AMANDA_CHECK_IPV6],
#include <sys/socket.h>
#include <errno.h>

main()
int main(void)
{
int aa;
aa = socket(AF_INET6, SOCK_STREAM, 0);
Expand Down