Browse Source

cosmetics: Remove trailing whitespace and tabs.

Originally committed as revision 8838 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 18 years ago
parent
commit
4ee10633d2
3 changed files with 8 additions and 8 deletions
  1. +2
    -2
      ffinstall.nsi
  2. +1
    -1
      ffserver.c
  3. +5
    -5
      libavformat/os_support.c

+ 2
- 2
ffinstall.nsi View File

@@ -32,7 +32,7 @@ Section "Install"
File ".\ffplay.exe"
File ".\COPYING"
File ".\CREDITS"
; documentation
SetOutPath $INSTDIR\doc
File ".\doc\faq.html"
@@ -58,7 +58,7 @@ Section Uninstall
Delete "$INSTDIR\ffplay.exe"
Delete "$INSTDIR\COPYING"
Delete "$INSTDIR\CREDITS"
; delete documentation
Delete "$INSTDIR\doc\faq.html"
Delete "$INSTDIR\ffmpeg-doc.html"


+ 1
- 1
ffserver.c View File

@@ -4281,7 +4281,7 @@ static int parse_ffconfig(const char *filename)
}

get_arg(arg, sizeof(arg), &p);
if (resolve_host(&acl.first, arg) != 0) {
fprintf(stderr, "%s:%d: ACL refers to invalid host or ip address '%s'\n",
filename, line_num, arg);


+ 5
- 5
libavformat/os_support.c View File

@@ -105,12 +105,12 @@ done:
int resolve_host(struct in_addr *sin_addr, const char *hostname)
{
struct hostent *hp;
if (!inet_aton(hostname, sin_addr)) {
hp = gethostbyname(hostname);
if (!hp)
return -1;
memcpy(sin_addr, hp->h_addr, sizeof(struct in_addr));
hp = gethostbyname(hostname);
if (!hp)
return -1;
memcpy(sin_addr, hp->h_addr, sizeof(struct in_addr));
}
return 0;
}


Loading…
Cancel
Save