mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
99c25961e6
2) Shorten down a long line in DESCR. PR: 12442 Submitted by: Isupov A.Yu <isupov@moonhe.jinr.ru>
17 lines
405 B
Plaintext
17 lines
405 B
Plaintext
*** pcnfsd_print.c Tue Jun 29 10:46:56 1999
|
|
--- pcnfsd_print.c Tue Jun 29 10:49:51 1999
|
|
***************
|
|
*** 691,697 ****
|
|
--- 691,701 ----
|
|
int saw_system;
|
|
|
|
#if (defined(BSD) && (BSD >= 199103))
|
|
+ #if __FreeBSD__ < 3
|
|
p = popen("/usr/sbin/lpc status", "r");
|
|
+ #else
|
|
+ p = popen("/usr/sbin/lpc status all", "r");
|
|
+ #endif /* __FreeBSD__ */
|
|
#else
|
|
p = popen("/usr/etc/lpc status", "r");
|
|
#endif
|