Bugs item #1540127, was opened at 2006-08-14 20:23 Message generated for change (Comment added) made by miconda You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=743020&aid=1540127&group_id=139143
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. >Category: tools Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Samwise (samwiseuk) >Assigned to: Daniel-Constantin Mierla (miconda) Summary: Solaris openserctl.fifo script error Initial Comment: Line 119 in /usr/local/lib64/openser/openserctl/openserctl.fifo: attempt=$(($attempt + 1)) when interpreted in Solaris 9 results in: syntax error: `attempt=$' unexpected so I had to change it to this more Solaris-friendly command: attempt=`expr $attempt + 1` which seems to work. ---------------------------------------------------------------------- >Comment By: Daniel-Constantin Mierla (miconda) Date: 2006-08-15 15:34 Message: Logged In: YES user_id=1246013 Fixed on CVS ---------------------------------------------------------------------- Comment By: Samwise (samwiseuk) Date: 2006-08-14 20:25 Message: Logged In: YES user_id=1068470 oops .. just to add: that this was discovered with the rel_1_1_0 branch checked out from CVS. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=743020&aid=1540127&group_id=139143 _______________________________________________ Devel mailing list [email protected] http://openser.org/cgi-bin/mailman/listinfo/devel
