Changeset 537 for trunk/src


Ignore:
Timestamp:
Sep 23, 2018, 11:27:55 PM (6 years ago)
Author:
katerina
Message:

Fix for issue #429 (compile error on non-Linux systems).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sh_subuid.c

    r534 r537  
    2323#define FIL__  _("sh_subuid.c")
    2424
    25 #if defined(__linux__)
    2625
    2726#include <sys/types.h>
     
    3332#include <errno.h>
    3433#include <limits.h>
     34
     35#if defined(__linux__)
    3536
    3637#include "samhain.h"
     
    232233char * sh_get_subuid (unsigned long subuid)
    233234{
     235  (void) subuid;
    234236  return NULL;
    235237}
     
    237239char * sh_get_subgid (unsigned long subgid)
    238240{
     241  (void) subgid;
    239242  return NULL;
    240243}
Note: See TracChangeset for help on using the changeset viewer.