mirror of
https://git.freebsd.org/ports.git
synced 2025-06-02 19:36:28 -04:00
* fix build with -fno-common * simplify Makefile * remove outdated WWW * fix plist and install Polish man page * fix bug when char is unsigned * mirror distfile on my own site for redundancy * take maintainership over this unmaintained port PR: 267595 Reported by: fuz@fuz.su (maintainer) MFH: 2022Q4 (build fix)
11 lines
265 B
C
11 lines
265 B
C
--- log.c.orig 2022-11-06 12:59:27 UTC
|
|
+++ log.c
|
|
@@ -45,7 +45,7 @@ int logadds(int code, char *base, char *var, char *var
|
|
}
|
|
|
|
int logget(char *name) {
|
|
- char c,decoy;
|
|
+ int c,decoy;
|
|
if(use_curses) {
|
|
if(Iflag)
|
|
wprintw(logw, "Overwrite %s ? [Y]/N ",name);
|