CVSROOT: /cvs Module name: src Changes by: guent...@cvs.openbsd.org 2013/10/27 12:31:24
Modified files: usr.bin/ftp : fetch.c usr.bin/lex : main.c misc.c usr.bin/rcs : ci.c usr.bin/rdistd : server.c usr.bin/rpcgen : rpc_cout.c rpc_main.c rpc_tblout.c Log message: If a constant string needs a name, use a static const array instead of a pointer or non-const array, as that minimizes the symbols, maximizes the placement into read-only memory, and avoids warnings from gcc -Wformat=2 when they're used as format strings. ok deraadt@