tRemove useless <div> in menus - phroxy - Gopher to HTTP proxy
 (HTM) git clone git://git.z3bra.org/phroxy.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit 35ef9fd13d17108919826f1a39aa37d5f0493bfa
 (DIR) parent 4cada0047ecac4c3ff54330b031574ec26700a29
 (HTM) Author: Willy Goiffon <dev@z3bra.org>
       Date:   Thu, 24 Sep 2020 10:32:37 +0200
       
       Remove useless <div> in menus
       
       Diffstat:
         M phroxy.c                            |       2 --
       
       1 file changed, 0 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/phroxy.c b/phroxy.c
       t@@ -237,7 +237,6 @@ printmenu(int fd, char *data)
        
                p = data;
        
       -        write(fd, "<div style='white-space: pre-wrap'>\n", 36);
                while((p = strsep(&data, "\n"))) {
                        i = *p++;
        
       t@@ -258,7 +257,6 @@ printmenu(int fd, char *data)
        
                        write(fd, a, strlen(a));
                }
       -        write(fd, "</div>\n", 7);
        
                return 0;
        }