Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
8d712aafd2 | |||
8ac4838af4 | |||
50e7b06730 |
2
Makefile
2
Makefile
@ -55,7 +55,7 @@ all:
|
|||||||
# Define USE_STDEV below if you want git to care about the underlying device
|
# Define USE_STDEV below if you want git to care about the underlying device
|
||||||
# change being considered an inode change from the update-cache perspective.
|
# change being considered an inode change from the update-cache perspective.
|
||||||
|
|
||||||
GIT_VERSION = 1.0.0a
|
GIT_VERSION = 1.0.0b
|
||||||
|
|
||||||
# CFLAGS and LDFLAGS are for the users to override from the command line.
|
# CFLAGS and LDFLAGS are for the users to override from the command line.
|
||||||
|
|
||||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
git-core (1.0.0b-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* GIT 1.0.0b to include two more fixes.
|
||||||
|
|
||||||
|
-- Junio C Hamano <junkio@cox.net> Wed, 21 Dec 2005 13:50:21 -0800
|
||||||
|
|
||||||
git-core (1.0.0a-0) unstable; urgency=low
|
git-core (1.0.0a-0) unstable; urgency=low
|
||||||
|
|
||||||
* GIT 1.0.0a to include the following fixes:
|
* GIT 1.0.0a to include the following fixes:
|
||||||
|
6
quote.c
6
quote.c
@ -126,8 +126,10 @@ static int quote_c_style_counted(const char *name, int namelen,
|
|||||||
|
|
||||||
if (!no_dq)
|
if (!no_dq)
|
||||||
EMIT('"');
|
EMIT('"');
|
||||||
for (sp = name; (ch = *sp++) && (sp - name) <= namelen; ) {
|
for (sp = name; sp < name + namelen; sp++) {
|
||||||
|
ch = *sp;
|
||||||
|
if (!ch)
|
||||||
|
break;
|
||||||
if ((ch < ' ') || (ch == '"') || (ch == '\\') ||
|
if ((ch < ' ') || (ch == '"') || (ch == '\\') ||
|
||||||
(ch == 0177)) {
|
(ch == 0177)) {
|
||||||
needquote = 1;
|
needquote = 1;
|
||||||
|
@ -99,7 +99,10 @@ static int read_pack_info_file(const char *infofile)
|
|||||||
while (fgets(line, sizeof(line), fp)) {
|
while (fgets(line, sizeof(line), fp)) {
|
||||||
int len = strlen(line);
|
int len = strlen(line);
|
||||||
if (line[len-1] == '\n')
|
if (line[len-1] == '\n')
|
||||||
line[len-1] = 0;
|
line[--len] = 0;
|
||||||
|
|
||||||
|
if (!len)
|
||||||
|
continue;
|
||||||
|
|
||||||
switch (line[0]) {
|
switch (line[0]) {
|
||||||
case 'P': /* P name */
|
case 'P': /* P name */
|
||||||
|
Reference in New Issue
Block a user