smbfs: code cleanup

* (sys_select): fix }
  * (sys_open): commented out
  * (sys_random, sys_srandom): remove unused functions

Signed-off-by: Andrew V. Samoilov <a.samoilov@gmail.com>
This commit is contained in:
Andrew V. Samoilov 2018-01-18 23:54:45 +02:00 committed by Andrew Borodin
parent f963a74a8e
commit 63d9fc6b0a

View File

@ -103,7 +103,6 @@ sys_select (int maxfd, fd_set * fds, struct timeval *tval)
#else /* !NO_SELECT */ #else /* !NO_SELECT */
int int
sys_select (int maxfd, fd_set * fds, struct timeval *tval) sys_select (int maxfd, fd_set * fds, struct timeval *tval)
/* cppcheck-suppress syntaxError */
{ {
#ifdef USE_POLL #ifdef USE_POLL
struct pollfd pfd[256]; struct pollfd pfd[256];
@ -154,8 +153,8 @@ sys_select (int maxfd, fd_set * fds, struct timeval *tval)
while (selrtn < 0 && errno == EINTR); while (selrtn < 0 && errno == EINTR);
return (selrtn); return (selrtn);
}
#endif /* USE_POLL */ #endif /* USE_POLL */
}
#endif /* NO_SELECT */ #endif /* NO_SELECT */
/******************************************************************* /*******************************************************************
@ -197,7 +196,7 @@ sys_ftell (FILE * fp)
{ {
return (SMB_OFF_T) ftell (fp); return (SMB_OFF_T) ftell (fp);
} }
#endif /* 0 */
/******************************************************************* /*******************************************************************
An open() wrapper that will deal with 64 bit filesizes. An open() wrapper that will deal with 64 bit filesizes.
********************************************************************/ ********************************************************************/
@ -211,6 +210,7 @@ sys_open (const char *path, int oflag, mode_t mode)
/******************************************************************* /*******************************************************************
An fopen() wrapper that will deal with 64 bit filesizes. An fopen() wrapper that will deal with 64 bit filesizes.
********************************************************************/ ********************************************************************/
#endif /* 0 */
FILE * FILE *
sys_fopen (const char *path, const char *type) sys_fopen (const char *path, const char *type)
@ -304,38 +304,3 @@ sys_gethostbyname (const char *name)
return (gethostbyname (name)); return (gethostbyname (name));
#endif /* REDUCE_ROOT_DNS_LOOKUPS */ #endif /* REDUCE_ROOT_DNS_LOOKUPS */
} }
/**************************************************************************
Wrapper for random().
****************************************************************************/
#if 0
long
sys_random (void)
{
#if defined(HAVE_RANDOM)
return (long) random ();
#elif defined(HAVE_RAND)
return (long) rand ();
#else
DEBUG (0, ("Error - no random function available !\n"));
exit (1);
#endif
}
/**************************************************************************
Wrapper for srandom().
****************************************************************************/
void
sys_srandom (unsigned int seed)
{
#if defined(HAVE_SRANDOM)
srandom (seed);
#elif defined(HAVE_SRAND)
srand (seed);
#else
DEBUG (0, ("Error - no srandom function available !\n"));
exit (1);
#endif
}
#endif /* 0 */