vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| The Problem: $ encrypt -s _ 12345 Segmentation fault (core dumped) This patch corrects the problem: cvs server: Diffing . Index: encrypt.c ================================================== RCS file: /cvs/src/usr.bin/encrypt/encrypt.c,v retrieving revision 1.21 diff -u -r1.21 encrypt.c --- encrypt.c 2004/07/13 21:09:48 1.21 +++ encrypt.c 2006/05/27 21:22:41 @@ -164,7 +164,7 @@ break; case 's': /* Unix crypt (DES) */ - if (operation != -1 || optarg[0] == '$') + if (operation != -1 || optarg[0] == '$' || optarg[0] == '_') usage(); operation = DO_DES; extra = optarg; Cya. Gustavo C. Pereira |