aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-01-17 01:44:32 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2004-01-17 01:44:32 +0000
commit3e77b4e954538af865c2b54e5713d7bc2e6791ba (patch)
tree69b32f983b3d8cc98b5dcdf7d0a588361e04c7fb /networking
parentc3b134f3b735bffd34a07efe9004627d0b29a287 (diff)
downloadbusybox-3e77b4e954538af865c2b54e5713d7bc2e6791ba.tar.gz
Remove some defined statements
Diffstat (limited to 'networking')
-rw-r--r--networking/inetd.c21
1 files changed, 7 insertions, 14 deletions
diff --git a/networking/inetd.c b/networking/inetd.c
index c594a67f2..8491fc38c 100644
--- a/networking/inetd.c
+++ b/networking/inetd.c
@@ -134,10 +134,6 @@
#define _PATH_INETDCONF "/etc/inetd.conf"
#define _PATH_INETDPID "/var/run/inetd.pid"
-#ifndef MIN
-#define MIN(a, b) ((a) < (b) ? (a) : (b))
-#endif
-
#define TOOMANY 40 /* don't start more than TOOMANY */
#define CNT_INTVL 60 /* servers in CNT_INTVL sec. */
#define RETRYTIME (60*10) /* retry after bind or server fail */
@@ -270,11 +266,8 @@ static const struct biltin biltins[] = {
};
#endif /* INETD_FEATURE_ENABLED */
-#define NUMINT (sizeof(intab) / sizeof(struct inent))
static const char *CONFIG = _PATH_INETDCONF;
-#define BCOPY(s, d, z) memcpy(d, s, z)
-
static void
syslog_err_and_discard_dg(int se_socktype, const char *msg, ...)
__attribute__ ((noreturn, format (printf, 2, 3)));
@@ -519,7 +512,7 @@ bump_nofile(void)
syslog(LOG_ERR, "getrlimit: %m");
return -1;
}
- rl.rlim_cur = MIN(rl.rlim_max, rl.rlim_cur + FD_CHUNK);
+ rl.rlim_cur = rl.rlim_max < (rl.rlim_cur + FD_CHUNK) ? rl.rlim_max : (rl.rlim_cur + FD_CHUNK);
if (rl.rlim_cur <= rlim_ofile_cur) {
syslog(LOG_ERR,
#if _FILE_OFFSET_BITS == 64
@@ -1142,10 +1135,10 @@ chargen_stream(int s, struct servtab *sep)
text[LINESIZ + 1] = '\n';
for (rs = ring;;) {
if ((len = endring - rs) >= LINESIZ)
- BCOPY(rs, text, LINESIZ);
+ memcpy(rs, text, LINESIZ);
else {
- BCOPY(rs, text, len);
- BCOPY(ring, text + len, LINESIZ - len);
+ memcpy(rs, text, len);
+ memcpy(ring, text + len, LINESIZ - len);
}
if (++rs == endring)
rs = ring;
@@ -1176,10 +1169,10 @@ chargen_dg(int s, struct servtab *sep)
return;
if ((len = endring - rs) >= LINESIZ)
- BCOPY(rs, text, LINESIZ);
+ memcpy(rs, text, LINESIZ);
else {
- BCOPY(rs, text, len);
- BCOPY(ring, text + len, LINESIZ - len);
+ memcpy(rs, text, len);
+ memcpy(ring, text + len, LINESIZ - len);
}
if (++rs == endring)
rs = ring;