Home
last modified time | relevance | path

Searched refs:applet_len (Results 1 – 1 of 1) sorted by relevance

/dports/sysutils/busybox/busybox-1.26.2/libbb/
H A Dverror_msg.c24 int applet_len, strerr_len, msgeol_len, used; in bb_verror_msg() local
32 applet_len = strlen(applet_name) + 2; /* "applet: " */ in bb_verror_msg()
40 if ((int)sizeof(stack_msg) - applet_len > 0) { in bb_verror_msg()
45 used = vsnprintf(stack_msg + applet_len, (int)sizeof(stack_msg) - applet_len, s, p2); in bb_verror_msg()
48 used += applet_len; in bb_verror_msg()
68 applet_len = 0; in bb_verror_msg()
72 memmove(msg + applet_len, msg, used); in bb_verror_msg()
73 used += applet_len; in bb_verror_msg()
76 msg[applet_len - 2] = ':'; in bb_verror_msg()
77 msg[applet_len - 1] = ' '; in bb_verror_msg()
[all …]