14 Aug
2006
14 Aug
'06
18:21
Am Montag, 14. August 2006 20:05 schrieb Jerry Feldman: [...]
Just a quick code nit. Why do you do a strdup (argv[1]) and strdup(".") where a simple pointer assignment works fine here: if (argc == 2) p = argv[1]; else p = "."; [...]
Yes, you're right. Sometimes one forgets the simple way ;-) Jan