whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
46685a46bb
commit
3581c62515
@ -521,7 +521,7 @@ config EFENCE
|
|||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
### config PARSE
|
### config PARSE
|
||||||
### bool "Uniform config file parser debugging applet: parse"
|
### bool "Uniform config file parser debugging applet: parse"
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
@ -21,9 +21,9 @@ echo 'static const char packed_usage[] ALIGN1 = {'
|
|||||||
##
|
##
|
||||||
## "$loc/usage" | bzip2 -1 | od -v -x \
|
## "$loc/usage" | bzip2 -1 | od -v -x \
|
||||||
## | $SED -e 's/^[^ ]*//' \
|
## | $SED -e 's/^[^ ]*//' \
|
||||||
## -e 's/ //g' \
|
## -e 's/ //g' \
|
||||||
## -e '/^$/d' \
|
## -e '/^$/d' \
|
||||||
## -e 's/\(..\)\(..\)/0x\2,0x\1,/g'
|
## -e 's/\(..\)\(..\)/0x\2,0x\1,/g'
|
||||||
|
|
||||||
"$loc/usage" | bzip2 -1 | $DD bs=2 skip=1 2>/dev/null | od -v -t x1 \
|
"$loc/usage" | bzip2 -1 | $DD bs=2 skip=1 2>/dev/null | od -v -t x1 \
|
||||||
| $SED -e 's/^[^ ]*//' \
|
| $SED -e 's/^[^ ]*//' \
|
||||||
|
@ -491,7 +491,7 @@ int patch_main(int argc UNUSED_PARAM, char **argv)
|
|||||||
int oldsum, newsum, del = 0;
|
int oldsum, newsum, del = 0;
|
||||||
char *s, *name;
|
char *s, *name;
|
||||||
|
|
||||||
oldsum = oldline + oldlen;
|
oldsum = oldline + oldlen;
|
||||||
newsum = newline + newlen;
|
newsum = newline + newlen;
|
||||||
|
|
||||||
name = reverse ? oldname : newname;
|
name = reverse ? oldname : newname;
|
||||||
|
@ -28,7 +28,7 @@ test "$ip" || exit 1
|
|||||||
|
|
||||||
{
|
{
|
||||||
echo "let cfg=cfg+1"
|
echo "let cfg=cfg+1"
|
||||||
test "$interface" && echo "if[\$cfg]='$interface'"
|
test "$interface" && echo "if[\$cfg]='$interface'"
|
||||||
test "$ip" && echo "ip[\$cfg]='$ip'"
|
test "$ip" && echo "ip[\$cfg]='$ip'"
|
||||||
test "$ip" && test "$mask" \
|
test "$ip" && test "$mask" \
|
||||||
&& echo "ipmask[\$cfg]='$ip/$mask'"
|
&& echo "ipmask[\$cfg]='$ip/$mask'"
|
||||||
|
@ -369,7 +369,7 @@ static int parse(const char *boundary, char **argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
next:
|
next:
|
||||||
free(line);
|
free(line);
|
||||||
}
|
}
|
||||||
|
|
||||||
//bb_info_msg("ENDPARSE[%s]", boundary);
|
//bb_info_msg("ENDPARSE[%s]", boundary);
|
||||||
|
@ -716,7 +716,7 @@ handle_dir_common(int opts)
|
|||||||
/* STAT <filename> */
|
/* STAT <filename> */
|
||||||
cmdio_write_raw(STR(FTP_STATFILE_OK)"-File status:\r\n");
|
cmdio_write_raw(STR(FTP_STATFILE_OK)"-File status:\r\n");
|
||||||
while (1) {
|
while (1) {
|
||||||
line = xmalloc_fgetline(ls_fp);
|
line = xmalloc_fgetline(ls_fp);
|
||||||
if (!line)
|
if (!line)
|
||||||
break;
|
break;
|
||||||
/* Hack: 0 results in no status at all */
|
/* Hack: 0 results in no status at all */
|
||||||
@ -731,7 +731,7 @@ handle_dir_common(int opts)
|
|||||||
int remote_fd = get_remote_transfer_fd(" Directory listing");
|
int remote_fd = get_remote_transfer_fd(" Directory listing");
|
||||||
if (remote_fd >= 0) {
|
if (remote_fd >= 0) {
|
||||||
while (1) {
|
while (1) {
|
||||||
line = xmalloc_fgetline(ls_fp);
|
line = xmalloc_fgetline(ls_fp);
|
||||||
if (!line)
|
if (!line)
|
||||||
break;
|
break;
|
||||||
/* I've seen clients complaining when they
|
/* I've seen clients complaining when they
|
||||||
|
@ -364,7 +364,7 @@ wait_for_reply(len_and_sockaddr *from_lsa, struct sockaddr *to)
|
|||||||
read_len = recv_from_to(rcvsock,
|
read_len = recv_from_to(rcvsock,
|
||||||
recv_pkt, sizeof(recv_pkt),
|
recv_pkt, sizeof(recv_pkt),
|
||||||
/*flags:*/ 0,
|
/*flags:*/ 0,
|
||||||
&from_lsa->u.sa, to, from_lsa->len);
|
&from_lsa->u.sa, to, from_lsa->len);
|
||||||
}
|
}
|
||||||
|
|
||||||
return read_len;
|
return read_len;
|
||||||
|
@ -66,7 +66,7 @@ struct dyn_lease* FAST_FUNC add_lease(
|
|||||||
char *p;
|
char *p;
|
||||||
if (hostname_len > sizeof(oldest->hostname))
|
if (hostname_len > sizeof(oldest->hostname))
|
||||||
hostname_len = sizeof(oldest->hostname);
|
hostname_len = sizeof(oldest->hostname);
|
||||||
p = safe_strncpy(oldest->hostname, hostname, hostname_len);
|
p = safe_strncpy(oldest->hostname, hostname, hostname_len);
|
||||||
/* sanitization (s/non-ASCII/^/g) */
|
/* sanitization (s/non-ASCII/^/g) */
|
||||||
while (*p) {
|
while (*p) {
|
||||||
if (*p < ' ' || *p > 126)
|
if (*p < ' ' || *p > 126)
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
static const uint8_t len_of_option_as_string[] = {
|
static const uint8_t len_of_option_as_string[] = {
|
||||||
[OPTION_IP] = sizeof("255.255.255.255 "),
|
[OPTION_IP] = sizeof("255.255.255.255 "),
|
||||||
[OPTION_IP_PAIR] = sizeof("255.255.255.255 ") * 2,
|
[OPTION_IP_PAIR] = sizeof("255.255.255.255 ") * 2,
|
||||||
[OPTION_STATIC_ROUTES]= sizeof("255.255.255.255/32 255.255.255.255 "),
|
[OPTION_STATIC_ROUTES]= sizeof("255.255.255.255/32 255.255.255.255 "),
|
||||||
[OPTION_STRING] = 1,
|
[OPTION_STRING] = 1,
|
||||||
#if ENABLE_FEATURE_UDHCP_RFC3397
|
#if ENABLE_FEATURE_UDHCP_RFC3397
|
||||||
[OPTION_STR1035] = 1,
|
[OPTION_STR1035] = 1,
|
||||||
|
@ -32,7 +32,7 @@ BEGIN {
|
|||||||
}
|
}
|
||||||
END {
|
END {
|
||||||
for (i = 0; i <= pos; i++) {
|
for (i = 0; i <= pos; i++) {
|
||||||
# printf("%s: help for #%i '%s' == %i\n", file[i], i, conf[i], help[i]);
|
# printf("%s: help for #%i '%s' == %i\n", file[i], i, conf[i], help[i]);
|
||||||
if (help[i] == 0) {
|
if (help[i] == 0) {
|
||||||
printf("%s: No helptext for '%s'\n", file[i], conf[i]);
|
printf("%s: No helptext for '%s'\n", file[i], conf[i]);
|
||||||
}
|
}
|
||||||
|
@ -2037,7 +2037,7 @@ static const char *next_brace_sub(const char *cp)
|
|||||||
break;
|
break;
|
||||||
cp++;
|
cp++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
/*{*/ if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
|
/*{*/ if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
|
||||||
break;
|
break;
|
||||||
if (*cp++ == '{') /*}*/
|
if (*cp++ == '{') /*}*/
|
||||||
|
@ -2,6 +2,6 @@ func() {
|
|||||||
eval "echo \"\${val_${1}}\""
|
eval "echo \"\${val_${1}}\""
|
||||||
}
|
}
|
||||||
|
|
||||||
val_x=24
|
val_x=24
|
||||||
(func x)
|
(func x)
|
||||||
echo Done
|
echo Done
|
||||||
|
@ -3,15 +3,15 @@
|
|||||||
n=0
|
n=0
|
||||||
while :
|
while :
|
||||||
do
|
do
|
||||||
echo A
|
echo A
|
||||||
while :
|
while :
|
||||||
do
|
do
|
||||||
echo B
|
echo B
|
||||||
break
|
break
|
||||||
done
|
done
|
||||||
echo iteration
|
echo iteration
|
||||||
[ $n = 1 ] && break
|
[ $n = 1 ] && break
|
||||||
echo C
|
echo C
|
||||||
n=`expr $n + 1`
|
n=`expr $n + 1`
|
||||||
done
|
done
|
||||||
echo D
|
echo D
|
||||||
|
@ -145,12 +145,12 @@ static void PUT(uint64_t off, void *buf, uint32_t size)
|
|||||||
|
|
||||||
// Standard mke2fs 1.41.9:
|
// Standard mke2fs 1.41.9:
|
||||||
// Usage: mke2fs [-c|-l filename] [-b block-size] [-f fragment-size]
|
// Usage: mke2fs [-c|-l filename] [-b block-size] [-f fragment-size]
|
||||||
// [-i bytes-per-inode] [-I inode-size] [-J journal-options]
|
// [-i bytes-per-inode] [-I inode-size] [-J journal-options]
|
||||||
// [-G meta group size] [-N number-of-inodes]
|
// [-G meta group size] [-N number-of-inodes]
|
||||||
// [-m reserved-blocks-percentage] [-o creator-os]
|
// [-m reserved-blocks-percentage] [-o creator-os]
|
||||||
// [-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]
|
// [-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]
|
||||||
// [-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]
|
// [-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]
|
||||||
// [-T fs-type] [-U UUID] [-jnqvFSV] device [blocks-count]
|
// [-T fs-type] [-U UUID] [-jnqvFSV] device [blocks-count]
|
||||||
//
|
//
|
||||||
// Options not commented below are taken but silently ignored:
|
// Options not commented below are taken but silently ignored:
|
||||||
enum {
|
enum {
|
||||||
@ -311,7 +311,7 @@ int mkfs_ext2_main(int argc UNUSED_PARAM, char **argv)
|
|||||||
nreserved = (uint64_t)nblocks * reserved_percent / 100;
|
nreserved = (uint64_t)nblocks * reserved_percent / 100;
|
||||||
|
|
||||||
// N.B. killing e2fsprogs feature! Unused blocks don't account in calculations
|
// N.B. killing e2fsprogs feature! Unused blocks don't account in calculations
|
||||||
nblocks_full = nblocks;
|
nblocks_full = nblocks;
|
||||||
|
|
||||||
// If last block group is too small, nblocks may be decreased in order
|
// If last block group is too small, nblocks may be decreased in order
|
||||||
// to discard it, and control returns here to recalculate some
|
// to discard it, and control returns here to recalculate some
|
||||||
|
@ -208,7 +208,7 @@ int mkfs_vfat_main(int argc UNUSED_PARAM, char **argv)
|
|||||||
int dev;
|
int dev;
|
||||||
unsigned bytes_per_sect;
|
unsigned bytes_per_sect;
|
||||||
unsigned sect_per_fat;
|
unsigned sect_per_fat;
|
||||||
unsigned opts;
|
unsigned opts;
|
||||||
uint16_t sect_per_track;
|
uint16_t sect_per_track;
|
||||||
uint8_t media_byte;
|
uint8_t media_byte;
|
||||||
uint8_t sect_per_clust;
|
uint8_t sect_per_clust;
|
||||||
|
Loading…
Reference in New Issue
Block a user