Bug 4746
Summary: | Modems don't hang up to international destination | ||
---|---|---|---|
Product: | [Retired] Red Hat Raw Hide | Reporter: | eric.ayers |
Component: | getty_ps | Assignee: | Bill Nottingham <notting> |
Status: | CLOSED RAWHIDE | QA Contact: | |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 1.0 | CC: | eric.ayers, rvokal |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 1999-11-23 13:21:37 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
eric.ayers
1999-08-27 14:00:11 UTC
Could you add this as an attachment in bugzilla? Thanks. =================================================================== RCS file: RCS/main.c,v retrieving revision 1.1 diff -r1.1 main.c 176a177 > HangUpSecs = 2; /* # of seconds to hangup the line */ 316c317 < while((c = getopt(count, args, "RC:D:ac:d:hr:t:w:")) != EOF) { --- > while((c = getopt(count, args, "RC:D:ac:d:hr:t:w:H:")) != EOF) { 346a348,350 > case 'H': > HangUpSecs = atoi(optarg); > break; 432a437,447 > if((p = defvalue(def, "HANGUPSECS"))) { > HangUpSecs = atoi(p); > debug (D_RUN, "got HANGUPSECS value of %d secs", HangUpSecs); > } > if (HangUpSecs < 2 || HangUpSecs >600) { > /* sleep is not reliable < 2 seconds and > 600 sounds like */ > /* a typo */ > logerr("Value for HANGUPSECS on %s should be between 2 and 600 secs", Device); > HangUpSecs = 2; > } > 669c684 < if(! NoHangUp) sleep(2); --- > if(! NoHangUp) sleep(HangUpSecs); =================================================================== RCS file: RCS/extern.h,v retrieving revision 1.1 diff -r1.1 extern.h 52a53 > EXTERN int HangUpSecs; /* Number of seconds to hang up the line */ =================================================================== RCS file: man/RCS/getty.1,v retrieving revision 1.1 diff -r1.1 man/getty.1 2c2 < .\" | $Id: getty.1,v 1.1 1999/08/27 13:48:42 eric Exp $ --- > .\" | $Id: getty.m4,v 2.0 90/09/19 20:11:33 paul Rel $ 27c27,29 < [\-a] [\-h] [\-r --- > [\-a] [\-h] [-H > .I hangupsecs] > [\-r 69c71 < .BR /etc/conf.getty, --- > .BR /etc/default/getty, 121c123,129 < by setting the speed to zero. Giving --- > by setting the speed to zero. You can specify the amount of time > to leave the line on-hook during a hangup by specifying the > .B \-H > flag followed by a number of seconds (or using > .BI HANGUPSECS= hangupsecs > in the defaults file). > Giving 233c241 < .BI /etc/conf.getty .line, --- > .BI /etc/default/getty .line, 235c243 < .BR /etc/conf.getty ), --- > .BR /etc/default/getty ), 510c518 < .BI /etc/conf.defaults_file. --- > .BI /etc/default/defaults_file. 786c794 < /etc/conf.getty[\fI.line\fR] --- > /etc/default/getty[\fI.line\fR] 789c797 < uses /etc/conf.uugetty[\fI.line\fR]. --- > uses /etc/default/uugetty[\fI.line\fR]. fixed in getty_ps-2.0.7j-11. Apologies for the extremely long delay. |