Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 159438 Details for
Bug 247998
ident not compatible with Subversion 1.2 and later
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Patch for ident to support new SVN syntax.
rcs-5.7-newsvnsyntax.patch (text/plain), 1020 bytes, created by
Jiri Moskovcak
on 2007-07-17 14:22:17 UTC
(
hide
)
Description:
Patch for ident to support new SVN syntax.
Filename:
MIME Type:
Creator:
Jiri Moskovcak
Created:
2007-07-17 14:22:17 UTC
Size:
1020 bytes
patch
obsolete
>diff -rup rcs-5.7/src/ident.c rcs-5.7mzk/src/ident.c >--- rcs-5.7/src/ident.c 1995-06-16 08:19:24.000000000 +0200 >+++ rcs-5.7mzk/src/ident.c 2007-07-17 15:23:15.000000000 +0200 >@@ -228,12 +228,18 @@ match(fp) /* group substring between t > char line[BUFSIZ]; > register int c; > register char * tp; >+ int COLON_C = 0; >+ int MAX_COLON = 1; > > tp = line; >- while ((c = getc(fp)) != VDELIM) { >+ while ((c = getc(fp)) && (COLON_C < MAX_COLON)) { > if (c == EOF && feof(fp) | ferror(fp)) > return c; > switch (ctab[c]) { >+ case COLON: >+ *tp++ = c; >+ COLON_C++; >+ break; > case LETTER: case Letter: > *tp++ = c; > if (tp < line+sizeof(line)-4) >@@ -245,7 +251,12 @@ match(fp) /* group substring between t > } > if (tp == line) > return c; >- *tp++ = c; >+ if(c == ' '){ >+ ungetc(c,fp); >+ } >+ else{ >+ *tp++ = c; >+ } > if ((c = getc(fp)) != ' ') > return c ? c : '\n'; > *tp++ = c;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 247998
:
159069
| 159438