Changeset 991ae089635d4b4c3882e9125369be2e7ead85af

Show
Ignore:
Timestamp:
22/06/08 18:46:58 (4 months ago)
Author:
Rémi Denis-Courmont <rdenis@simphalempin.com>
git-committer:
Rémi Denis-Courmont <rdenis@simphalempin.com> 1214153218 +0300
git-parent:

[f991c0201362390627c4a9c9e1111f83d8bb9244]

git-author:
Rémi Denis-Courmont <rdenis@simphalempin.com> 1214152975 +0300
Message:

Fix nissing include and atoi() invocation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/network/rootbind.c

    r536779c r991ae08  
    3636 
    3737#include <string.h> 
     38#include <stdlib.h> 
    3839 
    3940#include <sys/types.h> 
     
    9899    const char *sockenv = getenv ("VLC_ROOTWRAP_SOCK"); 
    99100    if (sockenv != NULL) 
    100         sock = atoi (sock); 
     101        sock = atoi (sockenv); 
    101102    if (sock == -1) 
    102103    {