# HG changeset patch # User Pascal Bellard # Date 1313510835 -7200 # Node ID ab174b8168e745454bafc6a8dc66b8a247e19d24 # Parent c4bd5d67c5f1cf2fde2a28661e4cb35540a907d1 busybox/conspy: typo diff -r c4bd5d67c5f1 -r ab174b8168e7 busybox/stuff/busybox-1.19-conspy.u --- a/busybox/stuff/busybox-1.19-conspy.u Tue Aug 16 18:01:18 2011 +0200 +++ b/busybox/stuff/busybox-1.19-conspy.u Tue Aug 16 18:07:15 2011 +0200 @@ -89,7 +89,7 @@ #define FLAG(x) (1 << FLAG_##x) #define BW (option_mask32 & FLAG(n)) -+static void putsci(const char *s) ++static void putcsi(const char *s) +{ + fputs(ESC"[", stdout); + fputs(s, stdout); @@ -99,7 +99,7 @@ { // Home, clear till end of screen - fputs(ESC"[1;1H" ESC"[J", stdout); -+ putsci("1;1H" ESC"[J"); ++ putcsi("1;1H" ESC"[J"); G.col = G.line = 0; } @@ -108,7 +108,7 @@ if (G.curoff != state) { G.curoff = state; - fputs(ESC"[?25", stdout); -+ putsci("?25"); ++ putcsi("?25"); bb_putchar("h?l"[1 + state]); } } @@ -128,7 +128,7 @@ // Reset attributes if (!BW) - fputs(ESC"[0m", stdout); -+ putsci("0m"); ++ putcsi("0m"); bb_putchar('\n'); - if (code > 1) + if (code > EXIT_FAILURE) @@ -185,7 +185,7 @@ ptr[-1] = 'm'; *ptr = '\0'; - fputs(G.attrbuf, stdout); -+ putsci(G.attrbuf); ++ putcsi(G.attrbuf); } } }